body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(307deg, rgba(82, 113, 255, 1) 0%, rgba(51, 60, 156, 1) 50%);
    min-height: 100vh;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-brand {
    font-weight: 700;
    color: #fff6f6 !important;
}

.nav-link {
    font-weight: 500;
    color: #ffffff !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #5371ff !important;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.btn-primary {
    background: linear-gradient(104deg, rgba(29, 39, 145, 1) 0%, rgba(60, 58, 171, 1) 50%);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    /* padding: 12px 16px; */
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #5371ff;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.bg-gradient-primary {
    background: linear-gradient(104deg, rgba(29, 39, 145, 1) 0%, rgba(60, 58, 171, 1) 50%) !important;
}

.text-primary {
    color: #5371ff !important;
}

.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-option {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.plan-option:hover {
    border-color: #5371ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.plan-option.selected {
    border-color: #5371ff;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    /* border-right: 1px solid rgba(255, 255, 255, 0.2); */
    z-index: 1000;
    transition: all 0.3s ease;
}

.sidebar.collapsed {
    width: 70px;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    background: #140943;
}

.sidebar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #5371ff;
    text-decoration: none;
}

.sidebar-brand img {
    height: 40px;
    margin-right: 10px;
}

.sidebar-nav {
    padding: 20px 0;
}

.sidebar .nav-item {
    margin-bottom: 5px;
}

.sidebar .nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #555 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0 25px 25px 0;
    margin-right: 20px;
}

.sidebar .nav-link:hover {
    background: linear-gradient(104deg, rgba(29, 39, 145, 1) 0%, rgba(60, 58, 171, 1) 50%);
    color: white !important;
    transform: translateX(5px);
}
.text-muted {
    color: #fff !important;
}

.sidebar .nav-link.active {
    background: linear-gradient(104deg, rgba(29, 39, 145, 1) 0%, rgba(60, 58, 171, 1) 50%);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.sidebar .nav-link i {
    width: 20px;
    margin-right: 15px;
    text-align: center;
}

.sidebar.collapsed .nav-link span {
    display: none;
}

.sidebar.collapsed .sidebar-brand span {
    display: none;
}

.main-content {
    margin-left: 280px;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s ease;
}

.main-content.expanded {
    margin-left: 70px;
}

.top-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 15px;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: #5371ff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background: rgba(102, 126, 234, 0.1);
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* .form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #5371ff;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
} */


.text-primary {
    color: #5371ff !important;
}

.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.show {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }
}

.dashboard h2{
    color: #fff !important;
}

.user_name .nav-link{
    color: #000 !important;
}
.form-select{
    font-size: 14px !important;
    font-weight: 400 !important;
    /* color: #73777b !important; */
}