:root {
    --primary-color: #4361ee;
    --primary-light: #7b94ff;
    --primary-dark: #3146b0;
    --accent-color: #48cae4;
    --gradient-start: #4361ee;
    --gradient-end: #3a0ca3;
    --text-color: #333;
    --light-text: #7d8597;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-radius: 15px;
    --box-shadow: 0 8px 24px rgba(67, 97, 238, 0.1);
    --transition: all 0.3s ease;
     /* Dashboard specific variables */
     --sidebar-width: 250px;
     --sidebar-collapsed-width: 70px;
     --topbar-height: 60px;
     --card-border-radius: 15px;
     --sidebar-transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    color: var(--text-color);
    background-color: var(--light-gray);
    overflow-x: hidden;
    letter-spacing: 0.3px;
    padding: 0;
    margin: 0;
}

.login-container {
    padding: 0;
    overflow: hidden;
}

/* Left side illustration */
.illustration-container {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.illustration-container::before {
    content: "";
    position: absolute;
    height: 200%;
    width: 200%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: rotate 240s linear infinite;
    opacity: 0.4;
}

/* Floating background shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:-9;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%;
}

.shape-1 {
    width: 250px;
    height: 250px;
    top: -80px;
    left: -100px;
    animation: float1 15s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    right: 70px;
    animation: float2 20s ease-in-out infinite;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 20%;
    animation: float3 10s ease-in-out infinite;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 30%;
    animation: float4 12s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(20px) rotate(10deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(-15deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(25px) rotate(5deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-8deg); }
}

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

.login-illustration {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 550px;
    padding: 2rem;
    text-align: center;
}

.illustration-icon {
    font-size: 5rem;
    opacity: 0.9;
}

.illustration-features {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding: 1rem 0;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.25);
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 300;
}

/* Right side login form */
.login-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    box-shadow: -15px 0 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.login-form {
    width: 100%;
    max-width: 450px;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.login-title {
    margin-bottom: 0.8rem;
    max-width: 80px;
}

.login-subtitle {
    color: var(--light-text);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.form-floating {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control {
    height: 60px;
    padding-left: 20px;
    border-radius: var(--border-radius);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    background-color: var(--light-gray);
    transition: var(--transition);
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
}

.form-control:focus {
    box-shadow: var(--box-shadow);
    border-color: var(--primary-light);
    background-color: var(--white);
}

.form-floating label {
    padding-left: 20px;
    color: var(--light-text);
    font-weight: 400;
}

.form-control.is-invalid {
    border-color: #dc3545;
    background-image: none;
    padding-right: 20px;
}

.form-control.is-valid {
    border-color: #198754;
    background-image: none;
    padding-right: 20px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 20px;
    background: none;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    z-index: 5;
}

.forgot-password {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
}

.forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.login-btn {
    height: 60px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}

.btn-loading {
    position: relative;
}

.login-btn i {
    transition: var(--transition);
}

.login-btn:hover i {
    transform: translateX(5px);
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.separator span {
    padding: 0 1rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.btn-social {
    flex: 1;
    height: 55px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    background-color: var(--white);
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-social::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 80%);
    opacity: 0;
    transition: var(--transition);
    transform: scale(0.5);
}

.btn-social:hover::before {
    opacity: 1;
    transform: scale(2);
}

.btn-social:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-google:hover {
    color: #DB4437;
}

.btn-facebook:hover {
    color: #4267B2;
}

.btn-apple:hover {
    color: #000000;
}

.signup-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.signup-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* Top Navigation Bar */
.top-navbar {
    height: var(--topbar-height);
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0 1rem;
    z-index: 1040;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
}

.toggle-sidebar-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--primary-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.toggle-sidebar-btn:hover {
    background-color: rgba(49, 85, 167, 0.1);
}

.navbar-brand {
    margin-left: 1rem;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.navbar-brand span {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.top-navbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.user-dropdown {
    position: relative;
}

.user-dropdown-toggle {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.user-dropdown-menu {
    position: absolute;
    top: 110%;
    right: 0;
    width: 220px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1050;
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    padding: 0 1.5rem 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 0.5rem;
}

.user-dropdown-header .user-name {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.user-dropdown-header .user-email {
    font-size: 0.85rem;
    color: var(--light-text);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    color: var(--text-color);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: rgba(49, 85, 167, 0.05);
    color: var(--primary-color);
    text-decoration: none;
}

.dropdown-item i {
    margin-right: 0.75rem;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: var(--light-text);
}

.dropdown-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.05);
    margin: 0.5rem 0;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: var(--topbar-height);
    bottom: 0;
    left: 0;
    width: var(--sidebar-width);
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    z-index: 1030;
    transition: var(--sidebar-transition);
    padding-top: 1rem;
}

.sidebar.collapsed {
    width: var(--sidebar-collapsed-width);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu-item {
    margin-bottom: 0.5rem;
}

.sidebar-menu-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin-right: 1rem;
    white-space: nowrap;
    position: relative;
}

.sidebar-menu-link:hover {
    background-color: rgba(49, 85, 167, 0.05);
    color: var(--primary-color);
}

.sidebar-menu-link.active {
    background-color: rgba(49, 85, 167, 0.1);
    color: var(--primary-color);
    font-weight: 500;
}

.sidebar-menu-icon {
    margin-right: 1rem;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    color: var(--light-text);
}

.sidebar-menu-text {
    opacity: 1;
    transition: var(--transition);
}

.sidebar.collapsed .sidebar-menu-text {
    position: absolute;
        background: #fff;
        padding: 0.75rem 1rem;
        left: var(--sidebar-collapsed-width);
        top: 0;
        z-index: 10;
        border-radius: 0 var(--border-radius) var(--border-radius) 0;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.07);
        width: calc(var(--sidebar-width) - var(--sidebar-collapsed-width));
        height: 100%;
        display: flex;
        align-items: center;
    opacity: 0;
    visibility: hidden;
}

.sidebar-menu-link:hover .sidebar-menu-icon {
    color: var(--primary-color);
}

.sidebar-menu-link.active .sidebar-menu-icon {
    color: var(--primary-color);
}

.sidebar-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.05);
    margin: 1rem 1rem 1rem 1.5rem;
}

.sidebar-heading {
    padding: 0.75rem 1.5rem 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-text);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    padding: calc(var(--topbar-height) + 20px) 20px 0;
    transition: var(--sidebar-transition);
}

body.sidebar-collapsed .main-content {
    margin-left: var(--sidebar-collapsed-width);
}

.page-header {
    margin-bottom: 1.5rem;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item {
    font-size: 0.85rem;
    color: var(--light-text);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* Dashboard Cards */
.dashboard-card {
    background-color: #fff;
    border-radius: var(--card-border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
    border: none;
}

.dashboard-card:hover {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-projects {
    background-color: rgba(49, 85, 167, 0.1);
    color: var(--primary-color);
}

.card-users {
    background-color: rgba(72, 202, 228, 0.1);
    color: var(--accent-color);
}

.card-value {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-color);
}

.card-label {
    color: var(--light-text);
    margin-bottom: 0;
}

.navbar-brand img {
    width: 45px;
}
/* Adding to the existing CSS file */

/* Top Navigation Additions */
.nav-icon-btn {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-color);
    position: relative;
    transition: var(--transition);
}

.nav-icon-btn:hover {
    background-color: rgba(0, 0, 0, 0.03);
    color: var(--primary-color);
}

.nav-icon-btn .badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.65rem;
    padding: 0.25rem 0.4rem;
    min-width: 18px;
}

.top-navbar-right {
    display: flex;
    align-items: center;
}

.top-nav-item {
    margin-right: 0.5rem;
}

/* Page Header Improvements */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.page-actions {
    display: flex;
    align-items: center;
}

/* Enhanced Dashboard Cards */
.stat-card {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
}

.stat-card-info {
    display: flex;
    align-items: center;
}

.stat-card-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-card-info .card-label {
    margin-bottom: 0;
}

.stat-card-chart {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-indicator {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.stat-indicator.up {
    color: #28a745;
}

.stat-indicator.down {
    color: #dc3545;
}

.stat-indicator i {
    margin-right: 0.25rem;
    font-size: 0.75rem;
}

.stat-progress {
    width: 60%;
}

.progress {
    height: 6px;
    background-color: rgba(0, 0, 0, 0.05);
}

.card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-bottom: 0;
}

.card-tasks {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.card-revenue {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

/* Chart Card */
.chart-card {
    height: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: transparent;
}

.card-header h5 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Activity Timeline */
.activity-card {
    height: 100%;
}

.activity-timeline {
    padding: 1rem 0;
}

.activity-item {
    display: flex;
    padding: 0.75rem 1.5rem;
    position: relative;
}

.activity-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 1.75rem;
    height: calc(100% - 1rem);
    width: 1px;
    background-color: rgba(0, 0, 0, 0.05);
}

.activity-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.activity-content {
    display: flex;
    flex-direction: column;
}

.activity-text {
    font-weight: 500;
    font-size: 0.9rem;
}

.activity-time {
    font-size: 0.8rem;
    color: var(--light-text);
}

/* Project Status */
.project-status-list {
    padding: 0.5rem 0;
}

.project-status-item {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.project-status-item:last-child {
    border-bottom: none;
}

.project-info h6 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.project-progress {
    display: flex;
    align-items: center;
    width: 50%;
}

.project-progress .progress {
    flex: 1;
    margin-right: 0.75rem;
}

.project-progress span {
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 36px;
}

/* Team Members Table */
.team-members-table {
    margin-bottom: 0;
}

.team-members-table td {
    vertical-align: middle;
    padding: 0.75rem 1.5rem;
    border-color: rgba(0, 0, 0, 0.03);
}

.team-members-table h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}
/* ...existing code... */

/* Footer Styles */
.footer {
    background-color: #fff;
    margin-top: 2rem;
    padding: 10px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.copyright {
    color: var(--light-text);
    font-size: 0.9rem;
    margin:0;
}

.copyright a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.copyright a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* For login and auth pages */
.auth-footer {
    background: transparent;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    text-align: center;
    box-shadow: none;
}
.form-label {
    font-weight: 600;
}
.dropzone {
    border: 2px dashed #4361ee;
    border-radius: var(--border-radius);
    background-color: #f8f9fa;
    min-height: 150px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dropzone:hover {
    background-color: rgba(67, 97, 238, 0.05);
}
.dropzone .dz-message {
    text-align: center;
    margin: 2em 0;
}
.dropzone .dz-preview .dz-image {
    border-radius: var(--border-radius);
}
.dropzone .dz-preview .dz-progress {
    height: 6px;
}
.form-switch .form-check-input {
    width: 3em;
    height: 1.8em;
    margin-left: 0;
}
.form-switch .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.duplicate-fields {
    animation: fadeIn 0.5s ease;
}
.add-more-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.82rem;
    border-radius: var(--border-radius);
    margin-top: 1.85rem;
}
.select2-container--default .select2-selection--multiple {
    border-radius: var(--border-radius);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    min-height: 60px;
    padding: 10px 20px;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--primary-light);
    box-shadow: var(--box-shadow);
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 2px 10px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: white;
    margin-right: 5px;
}
.remove-field {
    cursor: pointer;
    color: #dc3545;
    transition: var(--transition);
}
.remove-field:hover {
    color: #bb2d3b;
    transform: scale(1.2);
}
::placeholder {
    color: rgba(108, 117, 125, 0.5) !important;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.sidebar.collapsed .sidebar-heading {
    padding-left: 5px;
}
textarea.form-control {
    min-height: 120px;
}
.select2-container--classic .select2-selection--multiple {
    padding: 17px;
    border-radius: 20px;
    border-color: #ebebeb;
    background-color: #f8f9fa;
}
.select2-container--classic .select2-search--inline .select2-search__field {
    background-color: #f8f9fa;
    height: 23px;
}

/* Responsive */
@media (min-width: 992px) {
    .sidebar.collapsed .sidebar-menu-link:hover .sidebar-menu-text {
        opacity: 1;
        visibility: visible;
    }
}
@media (max-width: 991.98px) {
    .sidebar {
        left: -100%;
        width: var(--sidebar-width);
    }

    .sidebar.collapsed {
        left: 0;
    }

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

    body.sidebar-collapsed .main-content {
        margin-left: 0;
    }
}
@media (max-width: 991px) {
    .login-form {
        max-width: 600px;
        padding: 3rem;
    }
}
@media (max-width: 767.98px) {
    .stat-card-info {
        flex-direction: column;
        text-align: center;
    }
    
    .card-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .project-progress {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .project-status-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .project-info {
        margin-bottom: 1rem;
    }
    
    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer {
        margin-top: 1.5rem;
        padding: 1.25rem;
    }
}
@media (max-width: 576px) {
    .login-form {
        padding: 1.5rem;
    }
    
    .social-login {
        flex-wrap: wrap;
    }
    
    .btn-social {
        flex: 1 0 30%;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
}
@media (max-width: 575.98px) {
    .activity-item {
        padding: 0.75rem 1rem;
    }
    
    .project-status-item {
        padding: 1rem;
    }
    
    .team-members-table td {
        padding: 0.75rem 1rem;
    }
}

/* Success Animation */
.pop-animation {
    animation: pop 0.3s ease;
}

@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.login-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.login-success.show {
    opacity: 1;
    visibility: visible;
}

.success-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 1rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.login-form.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

/* Form Control Focus Effect */
.focused label {
    color: var(--primary-color);
    font-weight: 500;
}


.dashbfom  .dashboard-card {border: 1px solid #eaeaea;}















.chat-header {
  padding: 14px;
  background: #272b3a;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
}
#chat-response {
  border: 1px solid #ccc;
  padding: 0;
  height: max-content;
  overflow-y: auto;
}
.users-listing{
  border: 1px solid #ccc;
  padding: 10px;
}
.message-container {
  padding: 3px;
}


.msg-type {
	display: block;
	text-transform: capitalize;
	font-weight: 500;
	font-size: 13px;
	color: green;
}
.msg-type.mail {
	color: #c64f4f;
}
.msg-type.facebook {
	color: #1877F2;
}

.reset-btn {
	padding: 0;
	background: transparent;
	border: 0;
	color: #b96767;
	margin-left: 5px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: underline;

}



.chat-container {
                height: 80vh;
                display: flex;
                border: 1px solid #ddd;
                border-radius: 5px;
                overflow: hidden;
            }
            .user-list {
                width: 30%;
                background: #f8f9fa;
                overflow-y: auto;
                border-right: 1px solid #ddd;
            }
            .chat-box {
                width: 70%;
                display: flex;
                flex-direction: column;
                background: #fff;
            }
            .chat-messages {
                flex: 1;
                overflow-y: auto;
                padding: 15px;
            }
            .message { margin-bottom: 10px;}
			.message.received .message-text {
		width: fit-content;
	background: #eee;
	padding: 10px;
	border-radius: 10px;
	color: #000; max-width: 70%;
}
.message.sent .message-text {
	background: rgb(44, 83, 163);
	padding: 10px;
	border-radius: 10px;
	color: #fff;
	width: fit-content;
	margin-left: auto;
	max-width: 70%;
}
.message-time {
	font-size: 10px;
	margin-top: 5px;
}
.message.sent {
	text-align: left;
}
.message.received {
	text-align: left;
}
.message.sent .message-time {
	text-align: right; padding-right: 10px;
}
            .message-form {
                padding: 10px;
                border-top: 1px solid #ddd;
                display: flex;
                gap: 10px;
            }
            .message-form input {
                flex: 1;
            }
            .user-item {
                padding: 10px;
                cursor: pointer;
                border-bottom: 1px solid #ddd;
            }
            .user-item:hover {
                background: #e9ecef;
            }
			
			.lastmsg {
	text-wrap: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 12px;
	color: #555;
	margin-top: 2px;
}

.user-label {
	font-weight: 600;
	color: #333;
	text-wrap: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 14px;
	max-width: 200px;
}

.user-item.active {
	background: rgb(44, 83, 163);
	color: #fff;
}
.msgbox.w-100 {
	position: relative;
}

.message-form textarea {
	min-height: 145px;
}
.user-item.active   .user-label, .user-item.active .lastmsg {color:#fff;}

.message-form  button{height:45px;}
.msgtype {
	height: 35px;
	width: 35px;
	background: #eee;
	border-radius: 100%;
	text-align: center;
	line-height: 35px;
	font-size: 20px;
}
.msgtype.mail {
	background: #c71610;
	color: #fff;
}
.msgtype.facebook {
	background: #1877F2;
	color: #fff;
}
.user-item.active .msgtype.facebook,.user-item.active .msgtype.mail {
	background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.message.received.comment .message-text {
	background: #218399;
	padding: 10px;
	border-radius: 10px;
	color: #fff;
	width: fit-content;
	margin-left: auto;
	max-width: 70%;
	text-shadow: ;
	font-style: italic;
}
.message.received.comment .message-time {
	text-align: right;
}

.delete-comment {
	padding: 0;
	border: 0;
	background: transparent;
	color: red;
	text-decoration: underline;
	margin-left: 5px;
	cursor:pointer;
}

.rounded-number {
	background: black;
	width: auto;
	/* height: 20px; */
	padding: 0;
	text-align: center;
	display: inline-block;
	border-radius: 5px;
	color: #fff;
	font-size: 10px;
	min-width: 15px;
	height: 15px;
}
.options-menu {
	position: relative;
}
.popover-menu {
	position: absolute;
	right: 18px;
	font-size: 10px;
	width: fit-content;
	background: #bb5651;
	min-width: 90px;
	color: #fff;
	border-radius: 3px;
	text-align: center;
	padding: 2px;
}


.feature-image {
	border: 2px dashed #ddd;
	padding: 20px;
	border-radius: 5px;
}
.feature-image img {
	height: 50px !important;
	margin: 0px auto;
	display: block;
}

.logo.text-center img {
	width: 100px;
	margin-bottom: 15px;
	object-fit: contain;
}


#formModal {
	z-index: 9999;
}

.btn.btn-secondary.form-close-btn {
	background: transparent;
	color: #666;
	border: 0;
	padding: 0;
	margin-top: 15px;
	text-align: center;
	width: 100%;
}


.modal-content textarea.form-control {
	min-height: 200px;
}


.count-display span {
	width: 50%;
}

.msgcount {
	text-align: right;
}
.count-display {
	display: flex;
	/* gap: 30px; */
	width: 100%;
}

.typelabel {
	font-weight: 500;
	width: 75% !important;
}

.count-display.brb {
	padding-bottom: 5px;
	border-bottom: 1px solid #eee;
	font-weight: 500;
}

.text-right.fetchleads .btn {
	border-bottom-left-radius: 0!Important;
	border-bottom-right-radius: 0;
}


.api-fb {
	width: 28px;
	height: 28px;
	display: inline-block;
	background: #2c53a3;
	text-align: center;
	border-radius: 100%;
	color: #fff;
	line-height: 32px;
}
.api-gravity {
	width: 28px;
	height: 28px;
	display: inline-block;
	background: #f15a2b;
	text-align: center;
	border-radius: 100%;
	color: #fff;
	line-height: 32px;
	font-size: 12px;
}


#loadMoreBtn {
	width: auto;
	background: transparent;
	border: 0;
	color: #000;
	padding: 0;
	min-width: 325px;
	text-decoration: underline;
}


.text-right.fetchleads {
	width: 100%;
	margin-bottom: 0px;
}

.btn.btn-link.mark-action {
	padding: 0;
	font-size: 10px;
	background: transparent;
	color: #733b3b;
	padding: 0;
	display: inline-block;
	margin-top: 0;
	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px solid #999; border-radius:0; line-height: 1;
}

.user-item.active .btn.btn-link.mark-action {
	color: #ffffe5;
}


#leadlist .sorting_1 {
	min-width: 125px;
}
#leadlist tr td:nth-child(2) {
	
}
.table-date.sorting_1, .table-phone {
	min-width: 125px;
}
.table-email {
	max-width: 150px;
}
.table-message {
	max-width: 350px;
}

.thnko {
	font-size: 15px;
}




.sidebar-submenu li {
	list-style: none;
	padding: 5px 15px 5px 10px;
	background: #eee;
	margin: 0;
	border-bottom: 1px solid #fefefe; font-size: 15px;
}

.sidebar-submenu-link {
    display: block;
    padding: 0.4rem 1rem;
    color: #495057;
    text-decoration: none;
    transition: background 0.3s;
	font-size: 14px;
}

.sidebar-submenu-link:hover,
.sidebar-submenu-link.active {
    background: #f0f0f0;
    border-radius: 0.25rem;
    color: #0d6efd;
}


.msgbx {
	display: flex;
	gap: 10px;
	overflow:hidden;
}

.contact-data {
	width: 100%;
}

.sidebar-menu-item .fas.fa-chevron-down {
	font-size: 11px;
}

.sidebar-submenu-link i {
	font-size: 11px;
}

/* #loadMoreBtn {
    visibility: hidden;
    height: 1px;
}
 */
 
 
/*  .scicon.soc-fb {
	color: #1877F2;
}

 .scicon.soc-inst {
	color: #405DE6;
}

 .scicon.soc-gg {
	color: #0F9D58;
} */