        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		
		html {
			height: 100%;
		}

		body {
			font-family: Arial, sans-serif;
			min-height: 100vh;
			display: flex;
			flex-direction: column;
		}

         /* Navigation Styling */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #333;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            z-index: 1000;
        }

        .navbar .logo {
            font-size: 20px;
            font-weight: bold;
        }
		
        /* Right Menu Container */
        .right-menu {
            display: flex;
            gap: 15px; /* Space between buttons */
            align-items: center;
        }

        /* Main Menu Styling */
        .menu, .user-menu {
            position: relative;
			display: inline-block;
        }

        .menu-button, .user-button {
            background-color: #333;
            color: #fff;
            padding: 10px 15px;
            font-size: 16px;
            border: none;
            cursor: pointer;
        }

        /* Dropdown Menu Styling */
        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #444;
            border-radius: 4px;
            min-width: 150px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            padding: 0;
            list-style: none;
        }

        .dropdown-item {
            position: relative;
        }

        .dropdown > li > a {
            display: block;
            padding: 10px;
            color: #fff;
            text-decoration: none;
            font-size: 16px;
        }

        .dropdown > li > a:hover {
            background-color: #555;
        }

        /* Submenu for Settings */
        .submenu {
            display: none;
            position: absolute;
            top: 0;
            right: 100%;
            background-color: #555;
            border-radius: 4px;
            min-width: 150px;
            padding: 0;
            list-style: none;
        }
		
        .submenu > li > a {
            display: block;
            padding: 10px;
            color: #fff;
            text-decoration: none;
            font-size: 16px;
        }

        .dropdown-item:hover .submenu {
            display: block;
        }

        /* Show dropdown on hover */
        .menu:hover .dropdown,
		.user-menu:hover .dropdown {
            display: block;
        }
		
		.main-content {
			flex: 1;
			padding: 80px 20px 20px 20px;
		}
		
        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .form-container h2 {
            margin-bottom: 20px;
            font-size: 24px;
            color: #333;
        }

        .form-container label {
            display: block;
            margin-bottom: 5px;
            font-size: 16px;
            color: #333;
        }

        .form-container input[type="text"],
        .form-container input[type="email"],
		.form-container input[type="password"],
        .form-container textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 14px;
        }

        .form-container button,
		.form-container input[type="submit"],
		.form-container input[type="button"] {
            /*width: 100%;*/
            padding: 10px;
            background-color: #333;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
        }

        .form-container button:hover {
            background-color: #555;
        }
		
        /* Responsive Styles */
        @media (max-width: 600px) {
            .navbar ul {
                flex-direction: column;
                align-items: center;
            }

            .navbar ul li {
                margin: 5px 0;
            }
        }

        /* List Styling */
		.list-container {
			display: flex;
			flex-direction: column; /* Ensures items stack vertically */
			gap: 20px; /* Space between items */
			max-width: 100%; /* Ensures container fills available space */
			width: 100%; /* Forces the container to take full width */
		}

		.list-item {
			width: 100%; /* Ensures each item takes the full width of the container */
			background-color: #f9f9f9;
			padding: 15px;
			border-radius: 8px;
			box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
			display: flex;
			flex-direction: column;
		}

        .list-item h3 {
            margin-bottom: 10px;
            font-size: 18px;
            color: #333;
        }

        .list-item p {
            font-size: 14px;
            color: #555;
            margin-bottom: 5px;
        }
		
		
        /* Button Styling */
        .list-button {
            background-color: #333;
            color: #fff;
            padding: 10px 15px;
            border: none;
            cursor: pointer;
            border-radius: 4px;
            margin-bottom: 20px;
            margin-top: 10px;
            font-size: 14px;
        }
		
		/* Data Grid Container */
		.data-grid-container {
			max-width: 100%;
			margin: 20px auto;
			padding: 20px;
			background-color: #fff;
			border-radius: 8px;
			box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
			padding-bottom: 10px;
			text-align: left; /* Ensures inline elements align to the left */
			display: flex;
			flex-direction: column;
			align-items: flex-start; /* Forces children (buttons, table) to align left */
		}

		/* Grid Title */
		.grid-title {
			font-size: 22px;
			margin-bottom: 10px;
			color: #333;
			text-align: left;
		}

		/* Styled Table */
		.data-grid {
			width: 100%;
			border-collapse: collapse;
			background-color: #f9f9f9;
			border-radius: 8px;
			overflow: hidden;
			margin-top: 10px; /* Creates even spacing above */
			margin-bottom: 10px; /* Ensures even spacing below */
		}

		/* Table Headers */
		.data-grid thead {
			background-color: #333;
			color: #fff;
			font-size: 16px;
		}

		.data-grid th, .data-grid td {
			padding: 10px;
			text-align: left;
			border-bottom: 1px solid #ddd;
		}

		/* Alternate Row Colors */
		.data-grid tbody tr:nth-child(odd) {
			background-color: #f9f9f9;
		}

		.data-grid tbody tr:nth-child(even) {
			background-color: #e6e6e6;
		}

		/* Action Buttons */
		.action-buttons {
			display: flex;
			gap: 10px;
		}

		.action-icon {
			cursor: pointer;
			font-size: 18px;
			padding: 5px;
			border-radius: 4px;
			text-align: center;
			display: inline-block;
		}

		/* Edit Icon */
		.edit-icon {
			color: #007bff;
		}

		.edit-icon:hover {
			background-color: #cce5ff;
		}

		/* Delete Icon */
		.delete-icon {
			color: #dc3545;
		}

		.delete-icon:hover {
			background-color: #f8d7da;
		}

		/* Add Button */
		.grid-add-button {
			display: block;
			margin: 10px 0 10px 0; /* Removes automatic centering */
			background-color: #333;
			color: #fff;
			padding: 10px 15px;
			border: none;
			border-radius: 4px;
			cursor: pointer;
			font-size: 14px;
			text-align: left; /* Ensures text is left-aligned */
			width: fit-content; /* Prevents button from stretching */
		}

		.grid-add-button:hover {
			background-color: #555;
		}

		
        /* Modal Styling */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 1001;
        }

        .modal-content {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            max-width: 400px;
            width: 100%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .modal-content h3 {
            margin-bottom: 10px;
            font-size: 20px;
        }

        .modal-content input[type="text"],
        .modal-content input[type="email"],
        .modal-content input[type="password"],
        .modal-content textarea 
		{
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
		
        .modal-content textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .modal-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        .modal-button {
            padding: 10px 15px;
            font-size: 16px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .modal-button.ok {
            background-color: #333;
            color: #fff;
        }

        .modal-button.cancel {
            background-color: #ccc;
            color: #333;
        }
		.autocomplete-container {
			position: relative;
			width: 100%;
		}

		.autocomplete-list {
			display: none;
			position: absolute;
			top: 100%;
			left: 0;
			right: 0;
			z-index: 1000;
			background: #fff;
			border: 1px solid #ccc;
			border-top: none;
			max-height: 180px;
			overflow-y: auto;
			box-shadow: 0 4px 8px rgba(0,0,0,0.12);
		}

		.autocomplete-item {
			padding: 8px 10px;
			cursor: pointer;
		}

		.autocomplete-item:hover,
		.autocomplete-item.active {
			background: #f0f0f0;
		}
		
		.site-footer {
			margin-top: 40px;
			padding: 20px;
			background-color: #333;
			color: #fff;
			text-align: center;
			font-size: 14px;
		}

		.site-footer a {
			color: #fff;
			text-decoration: none;
		}

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

		.site-footer span {
			margin: 0 8px;
		}

		.footer-note {
			margin-top: 8px;
			font-size: 12px;
			color: #ccc;
		}
		
		.account-danger {
			margin-top: 40px;
			padding-top: 20px;
			border-top: 1px solid #ddd;
		}

		.account-danger h3 {
			color: #c62828;
			margin-bottom: 10px;
		}

		.account-danger p {
			margin-bottom: 15px;
			color: #555;
		}

		.delete-button {
			background-color: #c62828 !important;
			color: #fff;
		}

		.delete-button:hover {
			background-color: #a61f1f !important;
		}