
        /* Custom styles matching notes.html */
         /* General Page Styles */
         body {
            background: #d6d8db;  /* Softer grey, less harsh than white (#8c8c8c was too dark) */
            color: #212529;       /* Bootstrap's default dark text color */
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Navbar Styling */
        .navbar {
            background: rgba(0, 0, 0, 0.9); /* Darker background */
            border-bottom: 2px solid #f8f9fa;
        }

        .navbar-brand {
            color: #ffffff !important;
            font-weight: bold;
        }

        .navbar-brand:hover {
            color: #ffca28 !important;
        }

        /* Dropdown Button Fix */
        .navbar .dropdown-menu {
            background-color: #2c2f33;
            border: none;
            border-radius: 8px;
        }

        .navbar .dropdown-item {
            color: #ffffff;
        }

        .navbar .dropdown-item:hover {
            background-color: #44484c;
        }

        /* Buttons Fix */
        .btn {
            border-radius: 8px;
            transition: all 0.2s ease-in-out;
        }

        .btn-primary {
            background-color: #2a5298 !important;
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background-color: #1e3c72 !important;
        }

        .btn-danger {
            background-color: #e74c3c !important;
            border: none;
        }

        .btn-danger:hover {
            background-color: #c0392b !important;
        }

        .btn-warning {
            background-color: #f1c40f !important;
            border: none;
            color: #000;
        }

        .btn-warning:hover {
            background-color: #d4ac0d !important;
        }

        .btn-complete {
            background-color: #28a745 !important; /* Bootstrap success green */
            border: none;
            color: white; /* White text */
        }

        .btn-complete:hover {
            background-color: #218838; /* Darker green on hover */
            transform: scale(1.05); /* Slight pop effect */
        }


        /* Remove Button Blur */
        button, a {
            filter: none !important;
            box-shadow: none !important;
        }

        /* Fix Cards */
        .card {
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            padding: 15px;
        }

        /* Fix Spacing */
        .container {
            max-width: 1200px;
            margin: auto;
        }

        

        /* Footer */
        footer {
            margin-top: auto;
            background-color: rgba(0, 0, 0, 0.8);
            color: #f8f9fa;
            padding: 10px 0;
            text-align: center;
            font-size: 0.9rem;
        }

        footer a {
            color: #ffca28;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        