/* Main Layout */
body {
    min-height: 100vh;
    background: #f4f4f4;
    font-family: 'Sen', sans-serif;
}

.main-content {
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: white;
    min-height: 100vh;
    padding: 20px;
    border-right: 1px solid #eee;
    overflow-y: auto;
}

.sidebar .logo {
    padding: 0 15px 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.sidebar .logo img {
    width: 100%;
    height: auto;
}

.nav-item {
    margin-bottom: 10px;
}

.nav-link {
    color: #1d2159;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #1d2159;
    color: white;
    transform: translateY(-1px);
}

.nav-link.active {
    background: #1d2159;
    color: white;
}

/* Header */
.header {
    padding: 15px 30px;
    background: white;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-info img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

/* Content Area */
.content-wrapper {
    flex: 1;
    /* padding: 20px; */
    overflow-y: auto;
}

/* Footer */
footer {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
    text-align: center;
}

/* Updated Toast Styling */
.toast-container {
    z-index: 1055; /* Ensure it appears on top */
}

.toast {
    max-width: 350px; /* Slightly wider for better readability */
    backdrop-filter: blur(10px); /* Modern blur effect */
    background: rgba(255, 255, 255, 0.95); /* More opaque */
    border-radius: 12px; /* Rounded edges for a sleek look */
    padding: 12px;
}

.toast-header {
    border-bottom: none;
    padding: 10px 12px;
    font-size: 1rem;
}

.toast-body {
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.toast-title {
    font-size: 1.1rem;
    font-weight: bold;
}

.toast .btn-close {
    font-size: 14px;
}
