        /* Login & Registration CSS */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #4fb3bf;
            --secondary-color: #3a9aa5;
            --accent-pink: #f8b4c6;
            --accent-green: #b8d4a8;
            --primary-blue: #3d4f6b;
            --dark-blue: #2d3e54;
            --light-blue: #7a9bc9;
            --bg-color: #e8ebe8;
            --text-dark: #2c3e50;
            --text-muted: #6c757d;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-green) 100%);
            position: relative;
            overflow-x: hidden;
        }

        .navbar
        {
            background: #fff;
        }

        .pagination 
        {
            margin-bottom: 20px !important;
        }

        
        .chevron-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.3;
            z-index: 0;
            background-image: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 35px,
                    rgba(255,255,255,.1) 35px,
                    rgba(255,255,255,.1) 70px
                );
            animation: slideChevron 20s linear infinite;
        }

        @keyframes slideChevron {
            0% { transform: translateY(0); }
            100% { transform: translateY(70px); }
        }

        .form-container {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1rem;
        }
        .error-text {
            color: #d10000;
            font-size: 13px;
            font-weight: 500;
        }

        /* .card {
            max-width: 500px;
            width: 100%;
            border: none;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            overflow: hidden;
        }

        .card-body {
            padding: 2.5rem;
        } */

        .logo-container {
            text-align: center;
            margin-bottom: 2rem;
            animation: fadeInDown 0.8s ease-out;
        }

        .logo {
            width: 180px;
            height: auto;
            margin-bottom: 1rem;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .subtitle {
            color: rgb(0, 71, 171);
            font-weight: 600;
            margin-top: 5px;
            font-size: 0.95rem;
            margin-bottom: 0.3rem;
        }

        .page-title {
            color: #333;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 2rem;
        }

        .form-label {
            font-size: 0.85rem;
            color: #555;
            font-weight: 500;
            margin-bottom: 0.4rem;
        }

        .form-control, .form-select {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 0.65rem 0.9rem;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: white;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(79, 179, 191, 0.15);
            transform: translateY(-2px);
        }

        .input-group {
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .input-group:nth-child(1) { animation-delay: 0.1s; }
        .input-group:nth-child(2) { animation-delay: 0.2s; }
        .input-group:nth-child(3) { animation-delay: 0.3s; }
        .input-group:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn-create {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            color: white;
            padding: 0.75rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .btn-create::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.2);
            transition: left 0.5s ease;
        }

        .btn-create:hover::before {
            left: 100%;
        }

        .btn-create:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(79, 179, 191, 0.3);
        }

        .signin-link {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: #666;
        }

        .signin-link a {
            color: rgb(0, 71, 171);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .signin-link a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }

        @media (max-width: 576px) {
            /* .card-body {
                padding: 1.5rem;
            } */
                        
            .logo-text {
                font-size: 1.5rem;
            }
        }

        .form-control.is-invalid {
            border-color: #dc3545;
        }

        .floating-shapes {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 15s infinite ease-in-out;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 60px;
            height: 60px;
            background: var(--accent-pink);
            border-radius: 50%;
            top: 70%;
            right: 15%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 100px;
            height: 100px;
            background: var(--accent-green);
            border-radius: 50%;
            bottom: 15%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

        /* .logo-circle img {
            height: 80px;
            max-width: 200px;
        } */

        /* Dashboard CSS */
             /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.4;
            background-image: 
                repeating-radial-gradient(circle at 20% 50%, transparent 0, transparent 50px, rgba(91, 125, 177, 0.03) 50px, rgba(91, 125, 177, 0.03) 100px),
                repeating-radial-gradient(circle at 80% 50%, transparent 0, transparent 50px, rgba(122, 155, 201, 0.03) 50px, rgba(122, 155, 201, 0.03) 100px);
            animation: bgMove 20s ease-in-out infinite;
        }

        @keyframes bgMove {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(50px, 30px); }
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            padding: 1.2rem 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: relative;
            z-index: 10;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: slideInLeft 0.6s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* .logo-circle {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            animation: pulse 2s ease-in-out infinite;
        } */

        @keyframes pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
            50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255,255,255,0); }
        }

        .logo-text {
            color: white;
            font-weight: bold;
            font-size: 1.3rem;
        }

        .brand-info h1 {
            color: white;
            font-size: 1rem;
            margin: 0;
            font-weight: 600;
        }

        .brand-info p {
            color: rgba(255,255,255,0.9);
            margin: 0;
            font-size: 1rem;
        }

        .logout-btn {
            background: rgba(255,255,255,0.2);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            animation: fadeIn 0.8s ease-out;
        }

        .logout-btn:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Main Content */
        .main-content {
            position: relative;
            z-index: 1;
            padding: 2.5rem 0;
        }

        /* Stats Cards */
        .stats-row {
            margin-bottom: 1.5rem;
        }

        .stat-card {
            background: white;
            border-radius: 15px;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(91, 125, 177, 0.1);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.6s ease-out;
            animation-fill-mode: both;
        }

        .stat-card:nth-child(1) { animation-delay: 0.1s; }
        .stat-card:nth-child(2) { animation-delay: 0.2s; }
        .stat-card:nth-child(3) { animation-delay: 0.3s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(91, 125, 177, 0.2);
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(91, 125, 177, 0.1), rgba(122, 155, 201, 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .stat-card:hover .stat-icon {
            transform: rotate(10deg) scale(1.1);
        }

        .stat-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--primary-blue);
            fill: none;
            stroke-width: 2;
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .stat-value {
            color: #2c3e50;
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1;
        }

        /* Projects Section */
        .projects-section {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            animation: fadeInUp 0.8s ease-out 0.4s;
            animation-fill-mode: both;
            border: 1px solid rgba(91, 125, 177, 0.1);
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
        }

        .new-project-btn {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 10px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 11px !important;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(91, 125, 177, 0.3);
        }

        .new-project-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(91, 125, 177, 0.4);
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
            animation: fadeIn 1s ease-out 0.6s;
            animation-fill-mode: both;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .empty-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, rgba(91, 125, 177, 0.1), rgba(122, 155, 201, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: floatUpDown 3s ease-in-out infinite;
        }

        @keyframes floatUpDown {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .empty-icon svg {
            width: 60px;
            height: 60px;
            stroke: var(--primary-blue);
            fill: none;
            stroke-width: 1.5;
        }

        .empty-title {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .empty-text {
            color: var(--text-muted);
            font-size: 1rem;
        }

        .empty-text a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .empty-text a:hover {
            color: var(--dark-blue);
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .brand-info h1 {
                font-size: 1.2rem;
            }

            .stat-value {
                font-size: 2rem;
            }

            .section-header {
                flex-direction: column;
                gap: 1rem;
                align-items: stretch;
            }

            .new-project-btn {
                justify-content: center;
            }

            .projects-section {
                padding: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .main-content {
                padding: 1.5rem 0;
            }

            .empty-icon {
                width: 90px;
                height: 90px;
            }

            .empty-icon svg {
                width: 45px;
                height: 45px;
            }
        }

        /* Loading Animation */
        .loading-shimmer {
            background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

         /* .logo-circle img {
            height: 60px;
            max-width: 150px;
        } */

        /* Button Style */
.new-project-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px !important;
    padding: 10px 18px;
    background: rgb(0, 71, 171);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* Modal Background */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
    padding: 15px;
}

/* Modal Box */
.modal-box {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* Form Inputs */
.modal-box input,
.modal-box textarea {
    /* width: 100%; */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
}

.create-btn {
    width: 100%;
    padding: 12px;
    background: #222;
    color: #fff;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

/* Responsive Tweaks */
@media(max-width: 480px) {
    .modal-box {
        padding: 18px;
        width: 100%;
    }
}

/* Modal Background */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
    padding: 15px;
    z-index: 9999; /* ADD THIS */
}

/* Modal Box */
.modal-box {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    padding: 25px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 10000; /* ADD THIS TOO */
}
        /* End Here */

/* Dashboard-2 CSS */

/* Header */
        .header {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            align-items: center;
            gap: 1rem;
            justify-content: space-between;
        }

        .back-btn {
            background: transparent;
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 8px;
            transition: background 0.3s;
        }

        .back-btn:hover {
            background: rgba(255,255,255,0.1);
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex: 1;
        }

        .logo-circle img {
            height: 60px;
            width: auto;
        }

        .project-title-section {
            flex: 1;
        }

        .project-main-title {
            color: white;
            font-size: 1.3rem;
            font-weight: 600;
            margin: 0;
        }

        .project-subtitle {
            color: rgba(255,255,255,0.85);
            margin: 0;
            font-size: 0.9rem;
        }

        .upload-btn {
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            font-size: 0.9rem;
            cursor: pointer;
        }

        .upload-btn:hover {
            background: rgba(255,255,255,0.25);
        }

        /* Main Content */
        .main-content {
            padding: 1.5rem 0;
        }

        /* Project Summary */
        .summary-section {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .summary-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1.25rem;
        }

        .summary-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .summary-item {
            text-align: left;
        }

        .summary-label {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .summary-value {
            color: var(--text-dark);
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
        }

        /* Tabs Section */
        .tabs-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        .tabs-header {
            display: flex;
            border-bottom: 2px solid #f0f0f0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .tabs-header::-webkit-scrollbar {
            height: 3px;
        }

        .tabs-header::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 3px;
        }

        .tab-btn {
            background: transparent;
            border: none;
            padding: 1rem 1.5rem;
            color: var(--text-muted);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
            white-space: nowrap;
            font-size: 0.95rem;
        }

        .tab-btn:hover {
            color: var(--primary-blue);
            background: rgba(61, 79, 107, 0.05);
        }

        .tab-btn.active {
            color: var(--primary-blue);
            border-bottom-color: var(--primary-blue);
            background: rgba(61, 79, 107, 0.05);
        }

        .tab-content {
            display: none;
            padding: 1.5rem;
        }

        .tab-content.active {
            display: block;
        }

        /* Item Card */
        .item-card {
            background: #fafaf8;
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid #e5e5e5;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .item-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.5rem;
        }

        .item-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0;
        }

        .item-badge {
            background: rgba(91, 125, 177, 0.12);
            color: #5b7db1;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .item-type {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .item-details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .detail-row {
            display: flex;
            gap: 0.4rem;
            font-size: 0.9rem;
        }

        .detail-label {
            color: var(--text-muted);
            font-weight: 500;
        }

        .detail-value {
            color: var(--text-dark);
        }

        .item-alert {
            background: #fff8e1;
            color: #856404;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            border: 1px solid #ffeaa7;
        }

        .item-alert svg {
            flex-shrink: 0;
        }

        .empty-tab {
            text-align: center;
            padding: 3rem 1rem;
            color: var(--text-muted);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .summary-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.25rem;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }

            .upload-btn {
                order: 3;
                width: 100%;
                justify-content: center;
            }

            .summary-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .summary-value {
                font-size: 1.75rem;
            }

            .tab-btn {
                padding: 0.875rem 1.25rem;
                font-size: 0.9rem;
            }

            .item-details {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .main-content {
                padding: 1rem 0;
            }

            /* .logo-circle img {
                height: 40px;
            } */

            .project-main-title {
                font-size: 1.1rem;
            }

            .project-subtitle {
                font-size: 0.85rem;
            }

            .summary-section {
                padding: 1.25rem;
            }

            .summary-grid {
                gap: 0.875rem;
            }

            .summary-value {
                font-size: 1.5rem;
            }

            .summary-label {
                font-size: 0.8rem;
            }

            .tab-content {
                padding: 1.25rem;
            }

            .item-card {
                padding: 1.25rem;
            }

            .item-title {
                font-size: 1rem;
            }

            .detail-row {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 400px) {
            .summary-grid {
                grid-template-columns: 1fr;
            }

            .back-btn {
                width: 36px;
                height: 36px;
            }
        }


        /* Dashboard-1 CSS */