/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Navbar */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: #343a40;
    color: #fff;
    padding: 15px 0;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: scale(1.02);
    transition: all 0.2s ease-in-out;
}

.card-title {
    font-weight: bold;
}

.card-text {
    font-size: 0.9rem;
}

/* Chat Box */
.chat-box {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    overflow-y: scroll;
    height: 400px;
}

.message {
    padding: 8px 12px;
    border-radius: 5px;
    margin-bottom: 5px;
    display: inline-block;
    max-width: 80%;
    word-wrap: break-word;
}

.message.text-end {
    background-color: #e9ecef;
    align-self: flex-end;
}

.message span {
    font-weight: bold;
}

.message.text-primary {
    color: #0d6efd;
}

.message.text-success {
    color: #198754;
}

/* Forms */
form textarea {
    border-radius: 8px;
}

/* Buttons */
.btn-primary {
    background-color: #0d6efd;
    border: none;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    transition: all 0.2s ease-in-out;
}

.btn-danger {
    background-color: #dc3545;
    border: none;
}

.btn-danger:hover {
    background-color: #bb2d3b;
    transition: all 0.2s ease-in-out;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

table th {
    background-color: #f1f3f5;
    font-weight: bold;
}

/* Sidebar / Two-Column Layout */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-8, .col-md-4 {
    padding: 15px;
}

.col-md-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
}

.col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

/* Additional Utilities */
.text-muted {
    color: #6c757d !important;
}

.text-primary {
    color: #0d6efd !important;
}

.text-success {
    color: #198754 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

.badge {
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 5px;
}

.shadow-sm {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1) !important;
}
.blured-content {
    background-color: #f8f9fa;
    filter: blur(5px);
    display: inline-block;
}

.blured-content:hover {
    filter: blur(3px);
}

