/* Container voor de afbeelding */
.material-image-container {
    position: relative;
    width: 100px; /* Breedte van de afbeelding */
    height: 100px; /* Hoogte van de afbeelding */
    overflow: hidden;
}

/* Standaard verbergen van de afbeelding */
.material-image {
    display: none; /* Verberg de afbeelding standaard */
    width: 100%; /* Zorg ervoor dat de afbeelding past binnen de container */
    height: auto;
}

/* Toon de afbeelding bij hover */
.material-row:hover .material-image {
    display: block; /* Toon de afbeelding bij hover */
}

/* Popup afbeelding */
#image-popup {
    display: none;
    position: absolute;
    z-index: 1000;
    background-color: white;
    border: 1px solid #ccc;
    padding: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

#popup-image {
    max-width: 200px;
    max-height: 200px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #000000; /* Black background */
    color: #FEFF66; /* Yellow text */
}

/* Adjusted spacing below navbar */
body {
    margin-top: 80px; /* Increased spacing below navbar */
}

.content {
    margin-top: 40px; /* Add spacing below the navbar */
    padding: 20px;
    background-color: #000000; /* Black background */
    color: #FEFF66; /* Yellow text */
}

/* Welkom boodschap stijl */
.welcome {
    position: absolute; /* Change to absolute positioning */
    top: 20px; /* Position closer to the top */
    left: 20px; /* Align to the left with padding */
    color: #FEFF66; /* Yellow text */
    font-size: 2em; /* Increase font size for visibility */
    font-weight: bold; /* Make text bold */
}

/* Dashboard content styling */
.dashboard-content {
    position: fixed;
    top: 70px; /* Below the navbar */
    left: 20px; /* Align to the left */
    color: #FEFF66;
    font-size: 1.5em;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

fieldset {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

legend {
    font-size: 18px;
    font-weight: bold;
    color: #343a40;
}

h2 {
    font-size: 22px; /* Adjust font size */
    color: #FEFF66; /* Yellow text */
    margin-bottom: 10px; /* Reduce spacing below the heading */
    text-align: center;
    margin-top: 20px;
}

/* Center title and materials overview */
ul {
    margin: 20px auto; /* Center the list horizontally */
    width: 80%; /* Set a reasonable width */
    text-align: left; /* Align text to the left */
    padding: 10px; /* Add padding for better spacing */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

form {
    display: flex;
    flex-direction: column;
    gap: 5px; /* Reduce spacing between form elements */
    width: 80%; /* Make the form narrower */
    margin: 0 auto; /* Center the form */
}

form input, form select, form textarea {
    padding: 8px; /* Reduce padding */
    border: 1px solid #FEFF66; /* Yellow border */
    border-radius: 4px;
    font-size: 14px; /* Reduce font size */
    background-color: #000000; /* Black background */
    color: #FEFF66; /* Yellow text */
    transition: border-color 0.3s;
}

input[type="text"], input[type="password"] {
    width: 100%; /* Full width within the form */
    padding: 6px; /* Reduce padding */
    margin: 3px 0; /* Reduce spacing between inputs */
    border: 1px solid #FEFF66; /* Yellow border */
    border-radius: 4px; /* Rounded corners */
    background-color: #000000; /* Black background */
    color: #FEFF66; /* Yellow text */
    font-size: 14px; /* Adjust font size */
}

input[type="submit"] {
    background-color: #FEFF66; /* Yellow background */
    color: #000000; /* Black text */
    border: none;
    padding: 8px; /* Reduce padding */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer;
    font-size: 14px; /* Adjust font size */
    transition: background-color 0.3s;
    margin: 0 auto; /* Center the button horizontally */
}

input[type="submit"]:hover {
    background-color: #FFD700; /* Brighter yellow */
}

/* Refined navbar styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* Full width of the screen */
    background-color: #1c1c1c; /* Dark gray background */
    border-bottom: 3px solid #FEFF66; /* Yellow border to separate from the page */
    color: #FEFF66; /* Yellow text */
    padding: 10px 20px; /* Ensure consistent padding */
    height: auto; /* Ensure height adjusts to content */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000; /* Ensure it stays above other elements */
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.navbar ul li {
    margin-right: 20px;
}

.navbar ul li.logout {
    margin-left: auto; /* Push the logout button to the far right */
    position: fixed; /* Fix the logout button */
    right: 20px; /* Align to the far right */
}

.navbar ul li a {
    display: block; /* Make the entire button clickable */
    color: #FEFF66; /* Yellow text */
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.navbar ul li a:hover {
    background-color: #FFD700; /* Brighter yellow */
}

.navbar .logout {
    margin-left: auto; /* Push the logout link to the right */
    position: relative; /* Ensure it stays within the navbar */
    right: 0; /* Align to the far right */
}

/* Responsive navbar styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1c1c1c;
    border-bottom: 3px solid #FEFF66;
    color: #FEFF66;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.navbar .menu-toggle {
    display: none;
    font-size: 24px;
    color: #FEFF66;
    cursor: pointer;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.navbar ul li {
    margin-right: 20px;
}

.navbar ul li a {
    display: block;
    color: #FEFF66; /* Yellow text */
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.navbar ul li a:hover {
    background-color: #FFD700; /* Brighter yellow */
}

/* Responsive styles */
@media (max-width: 768px) {
    .navbar ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: #1c1c1c;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 10px 0;
        border-top: 3px solid #FEFF66;
    }

    .navbar ul.active {
        display: flex;
    }

    .navbar .menu-toggle {
        display: block;
    }
}

/* Login form styling */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 300px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000000; /* Black background */
    border: 2px solid #FEFF66; /* Yellow border */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 0 10px #FEFF66; /* Yellow glow */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the form */
}

.login-form h2 {
    color: #FEFF66; /* Yellow text */
    text-align: center;
    margin-bottom: 20px;
}

.login-form input {
    padding: 10px;
    border: 1px solid #FEFF66; /* Yellow border */
    border-radius: 5px;
    font-size: 16px;
    background-color: #000000; /* Black background */
    color: #FEFF66; /* Yellow text */
}

.login-form input[type="submit"] {
    background-color: #FEFF66; /* Yellow background */
    color: #000000; /* Black text */
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    margin: 0 auto; /* Center the button horizontally */
    width: 100%; /* Match the width of input fields */
    height: 40px; /* Match the height of input fields */
}

.login-form input[type="submit"]:hover {
    background-color: #FFD700; /* Slightly lighter yellow */
}

/* Create Project Page Styles */
.create-project-page {
    margin-top: 40px; /* Add spacing below the navbar */
    padding: 20px;
    background-color: #000000; /* Black background */
    color: #FEFF66; /* Yellow text */
}

.create-project-page h2 {
    font-size: 24px;
    color: #FEFF66; /* Yellow text */
    margin-bottom: 20px;
}

/* Center title and materials overview */
.create-project-page h2 {
    text-align: center;
    margin-top: 20px;
}

.create-project-page form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.create-project-page form input,
.create-project-page form textarea,
.create-project-page form select {
    padding: 10px;
    border: 1px solid #FEFF66; /* Yellow border */
    border-radius: 5px;
    font-size: 16px;
    background-color: #000000; /* Black background */
    color: #FEFF66; /* Yellow text */
}

.create-project-page form button {
    background-color: #FEFF66; /* Yellow background */
    color: #000000; /* Black text */
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

/* Adjusted styling for client list buttons */
.clients-page ul {
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
}

.clients-page ul li a.full-click {
    display: block; /* Make the entire area clickable */
    padding: 8px; /* Reduce padding for smaller buttons */
    background-color: #1c1c1c; /* Dark gray background */
    border: 1px solid #FEFF66; /* Yellow border */
    border-radius: 4px; /* Slightly rounded corners */
    color: #FEFF66; /* Yellow text */
    text-decoration: none; /* Remove underline */
    font-weight: normal; /* Keep text weight normal */
    text-align: left; /* Align text to the left */
    width: 80%; /* Reduce width */
    margin: 0 auto; /* Center the button horizontally */
    transition: background-color 0.3s; /* Smooth transition */
}

.clients-page ul li a.full-click:hover {
    background-color: #FFD700; /* Brighter yellow */
    text-decoration: none; /* Keep text clean */
}

/* Isolate navbar styling from .clients-page */
.clients-page .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* Full width of the screen */
    background-color: #1c1c1c; /* Dark gray background */
    border-bottom: 3px solid #FEFF66; /* Yellow border to separate from the page */
    color: #FEFF66; /* Yellow text */
    padding: 10px 20px; /* Ensure consistent padding */
    height: auto; /* Ensure height adjusts to content */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000; /* Ensure it stays above other elements */
    margin: 0; /* Remove any external margin */
    box-sizing: border-box; /* Include padding and border in element's width and height */
}

/* Styling for client wrapper */
.client-wrapper {
    margin-bottom: 15px; /* Add spacing between clients */
}

/* Adjust 'Nieuw materiaal toevoegen' button size */
.add-material-button {
    display: block; /* Make the button a block element */
    width: 60%; /* Reduce width to make it smaller */
    margin: 10px auto; /* Center the button horizontally and add spacing */
    padding: 8px 16px; /* Keep padding consistent */
    background-color: #FEFF66; /* Yellow background */
    color: #000000; /* Black text */
    border: 1px solid #FEFF66; /* Yellow border */
    border-radius: 4px; /* Slightly rounded corners */
    text-decoration: none; /* Remove underline */
    font-weight: normal; /* Keep text weight normal */
    transition: background-color 0.3s; /* Smooth transition */
}

.add-material-button:hover {
    background-color: #FFD700; /* Brighter yellow */
}

/* Adjust materials table styling */
#materials-table {
    margin: 20px auto; /* Center the table horizontally */
    width: 80%; /* Set a reasonable width */
    border-collapse: collapse; /* Remove gaps between table borders */
    background-color: transparent; /* Remove background */
    color: #FEFF66; /* Yellow text */
    border: none; /* Remove border around the table */
    box-shadow: none; /* Remove shadow */
}

#materials-table th, #materials-table td {
    padding: 10px; /* Add padding inside cells */
    text-align: left; /* Align text to the left */
    border-bottom: 1px solid #FEFF66; /* Add a border between rows */
}

#materials-table th {
    background-color: #FEFF66; /* Yellow background for header */
    color: #000000; /* Black text */
    font-weight: bold; /* Make header text bold */
}

#materials-table tr:hover {
    background-color: #FFD700; /* Highlight row on hover */
}

/* Style for the employees table */
table {
    margin: 20px auto; /* Center the table horizontally */
    width: 80%; /* Set a reasonable width */
    border-collapse: collapse; /* Remove gaps between table borders */
    background-color: #000000; /* Black background */
    color: #FEFF66; /* Yellow text */
    border: 1px solid #FEFF66; /* Yellow border */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
}

table th, table td {
    padding: 10px; /* Add padding inside cells */
    text-align: left; /* Align text to the left */
    border-bottom: 1px solid #FEFF66; /* Add a border between rows */
}

table th {
    background-color: #FEFF66; /* Yellow background for header */
    color: #000000; /* Black text */
    font-weight: bold; /* Make header text bold */
}

table tr:hover {
    background-color: #FFD700; /* Highlight row on hover */
}

/* Simplified style for buttons */
button[type="submit"], button[type="button"] {
    display: inline-block;
    padding: 8px 16px;
    background-color: #FEFF66; /* Yellow background */
    color: #000000; /* Black text */
    border: 1px solid #FEFF66; /* Yellow border */
    border-radius: 4px; /* Slightly rounded corners */
    font-size: 14px; /* Adjust font size */
    font-weight: normal; /* Keep text weight normal */
    cursor: pointer; /* Pointer cursor */
    transition: background-color 0.3s; /* Smooth transition */
    margin-top: 10px; /* Add spacing above */
}

/* Style for checkboxes */
input[type="checkbox"] {
    width: 16px; /* Set width */
    height: 16px; /* Set height */
    margin-right: 8px; /* Add spacing between checkbox and label */
    cursor: pointer; /* Pointer cursor */
    accent-color: #FEFF66; /* Yellow color for checkbox */
}

/* Improve readability of function text */
label {
    display: flex; /* Align checkbox and text */
    align-items: center; /* Center align */
    font-size: 16px; /* Increase font size for better readability */
    color: #FEFF66; /* Yellow text for better contrast */
    font-weight: bold; /* Make text bold for emphasis */
}

/* Style for 'Nieuwe functie toevoegen' link */
.add-function-link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #FEFF66; /* Yellow background */
    color: #000000; /* Black text */
    border: 1px solid #FEFF66; /* Yellow border */
    border-radius: 4px; /* Slightly rounded corners */
    font-size: 14px; /* Adjust font size */
    font-weight: normal; /* Keep text weight normal */
    text-decoration: none; /* Remove underline */
    cursor: pointer; /* Pointer cursor */
    transition: background-color 0.3s; /* Smooth transition */
    margin-top: 10px; /* Add spacing above */
}

.add-function-link:hover {
    background-color: #FFD700; /* Brighter yellow */
}

/* Style for project list container */
.project-list {
    margin: 20px auto; /* Center the list horizontally */
    width: 80%; /* Set a reasonable width */
}

/* Style for individual project items */
.project-item {
    margin: 10px 0; /* Add spacing between items */
    padding: 10px; /* Add padding inside items */
    background-color: #000000; /* Black background */
    color: #FEFF66; /* Yellow text */
    border: 1px solid #FEFF66; /* Yellow border */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
    transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
}

.project-item a {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit text color */
}

.project-item:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #000000; /* Black text on hover */
}

/* Style for archived projects link */
.archived-projects-link {
    margin: 20px auto; /* Center the link horizontally */
    text-align: center; /* Center the text */
}

.archived-projects-link a {
    display: inline-block; /* Make the link block-like */
    padding: 10px 15px; /* Add padding around the link */
    text-decoration: none; /* Remove underline */
    color: #FEFF66; /* Yellow text */
    background-color: #000000; /* Black background */
    border: 1px solid #FEFF66; /* Yellow border */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
}

.archived-projects-link a:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #000000; /* Black text on hover */
}

/* Adjust project list spacing to avoid navbar overlap */
.project-list {
    margin-top: 80px; /* Add spacing below the navbar */
}

/* Style for archived projects list container */
.archived-projects-list {
    margin: 20px auto; /* Center the list horizontally */
    width: 80%; /* Set a reasonable width */
}

/* Style for individual archived project items */
.archived-project-item {
    margin: 10px 0; /* Add spacing between items */
    padding: 10px; /* Add padding inside items */
    background-color: #000000; /* Black background */
    color: #FEFF66; /* Yellow text */
    border: 1px solid #FEFF66; /* Yellow border */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
    transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
}

.archived-project-item a {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit text color */
}

.archived-project-item:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #000000; /* Black text on hover */
}

.archived-project-item button {
    margin-left: 10px; /* Add spacing between link and button */
    padding: 5px 10px; /* Adjust button padding */
    background-color: #FEFF66; /* Yellow background */
    color: #000000; /* Black text */
    border: 1px solid #FEFF66; /* Yellow border */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor */
    transition: background-color 0.3s; /* Smooth transition */
}

.archived-project-item button:hover {
    background-color: #FFD700; /* Gold background on hover */
}

/* Adjust archived projects list spacing to avoid navbar overlap */
.archived-projects-list {
    margin-top: 70px; /* Increase spacing below the navbar */
}

/* Updated styling for materials and services sections */
.materials-section, .services-section {
    background-color: #000000; /* Black background */
    padding: 20px; /* Increased padding for better spacing */
    margin: 30px auto; /* Centered and added more spacing */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.materials-section h3, .services-section h3 {
    color: #FEFF66; /* Yellow text */
    font-size: 1.8em; /* Increased font size */
    margin-bottom: 15px; /* Added more spacing below heading */
    text-align: center; /* Centered text */
}

/* Center title for materials overview */
h3 {
    text-align: center; /* Center the title */
    margin-top: 20px; /* Add spacing above */
    margin-bottom: 10px; /* Add spacing below */
}

.materials-section p a, .services-section p a {
    background-color: #FEFF66; /* Yellow background */
    color: #000000; /* Black text */
    border: none; /* Removed border */
    padding: 10px 15px; /* Added padding for better clickability */
    border-radius: 5px; /* Rounded corners */
    font-size: 14px; /* Adjusted font size */
    font-weight: bold; /* Bold text */
    text-decoration: none; /* Removed underline */
    cursor: pointer; /* Pointer cursor */
    transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
}

.materials-section p a:hover, .services-section p a:hover {
    background-color: #FFD700; /* Gold background */
    color: #000000; /* Black text */
}

/* Centered styling for materials and services sections */
.materials-section, .services-section {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    text-align: center; /* Center text */
}

.materials-section p, .services-section p {
    text-align: center; /* Center text */
}

.materials-section ul, .services-section ul {
    margin: 0 auto; /* Center the list */
}

/* Centered styling for project information */
.project-info {
    width: 100%; /* Full width */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    flex-direction: column; /* Stack content vertically */
    margin: 20px auto; /* Add spacing and center the section */
    padding: 20px; /* Add padding for better spacing */
    /* background-color: #1c1c1c; Dark gray background */
    border-radius: 5px; /* Rounded corners */
    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); Subtle shadow */
    max-width: 80%; /* Limit the width for better centering */
    text-align: center; /* Center text */
}

/* Style for the 'Terug naar project' button */
p a {
    display: inline-block; /* Make the link block-like */
    padding: 10px 15px; /* Add padding around the link */
    text-decoration: none; /* Remove underline */
    color: #FEFF66; /* Yellow text */
    background-color: #000000; /* Black background */
    border: 1px solid #FEFF66; /* Yellow border */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
    margin: 20px auto; /* Center the button horizontally */
    text-align: center; /* Center the text */
}

p a:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #000000; /* Black text on hover */
}

/* Center the 'Terug naar project' button */
p {
    text-align: center; /* Center the button container */
}

/* Style for the 'Nieuw project aanmaken' button */
.create-project-link a {
    display: inline-block; /* Make the link block-like */
    padding: 10px 15px; /* Add padding around the link */
    text-decoration: none; /* Remove underline */
    color: #FEFF66; /* Yellow text */
    background-color: #000000; /* Black background */
    border: 1px solid #FEFF66; /* Yellow border */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
    margin: 20px auto; /* Center the button horizontally */
    text-align: center; /* Center the text */
}

.create-project-link a:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #000000; /* Black text on hover */
}

/* Center the 'Nieuw project aanmaken' button container */
.create-project-link {
    text-align: center; /* Center the button container */
    margin-top: 20px; /* Add spacing above */
}

/* Style for requested projects */
.requested-projects {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.project-item {
    border: 1px solid #FEFF66;
    border-radius: 8px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #1c1c1c;
}

.project-item a {
    font-size: 18px;
    font-weight: bold;
    color: #FEFF66;
    text-decoration: none;
}

.project-item a:hover {
    text-decoration: underline;
}

.project-item p {
    margin: 5px 0;
    color: #FEFF66;
}

/* Style for unfilled services */
.unfilled-services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.service-item {
    border: 1px solid #FEFF66;
    border-radius: 8px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #1c1c1c;
    transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
}

.service-item a {
    font-size: 18px;
    font-weight: bold;
    color: #FEFF66; /* Yellow text */
    text-decoration: none; /* Remove underline */
    text-decoration-color: #FEFF66; /* Explicitly set underline color to match text */
}

.service-item a:hover {
    text-decoration: underline; /* Add underline on hover */
    text-decoration-color: #FFD700; /* Gold underline on hover */
    color: #FFD700; /* Gold text on hover */
}

.service-item:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #000000; /* Black text on hover */
}

.service-item h3 {
    color: #FEFF66; /* Yellow text */
    margin: 5px 0; /* Add spacing */
}

.service-item p {
    margin: 5px 0;
    color: #FEFF66;
}

/* Style for ongoing projects */
.ongoing-projects {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.project-item {
    border: 1px solid #FEFF66;
    border-radius: 8px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #1c1c1c;
    transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
}

.project-item a {
    font-size: 18px;
    font-weight: bold;
    color: #FEFF66; /* Yellow text */
    text-decoration: none; /* Remove underline */
}

.project-item a:hover {
    text-decoration: underline; /* Add underline on hover */
    text-decoration-color: #FFD700; /* Gold underline on hover */
    color: #FFD700; /* Gold text on hover */
}

.project-item:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #000000; /* Black text on hover */
}

.project-item h3 {
    color: #FEFF66; /* Yellow text */
    margin: 5px 0; /* Add spacing */
}

.project-item p {
    margin: 5px 0;
    color: #FEFF66;
}

/* Responsive styles for dashboard */
@media (max-width: 768px) {
    .content {
        padding: 10px;
    }

    .welcome h1 {
        font-size: 1.5em; /* Adjust font size for smaller screens */
        text-align: center; /* Center the text */
    }

    .requested-projects, .unfilled-services, .ongoing-projects {
        flex-direction: column; /* Stack items vertically */
        gap: 10px; /* Reduce gap between items */
        align-items: center; /* Center the blocks horizontally */
    }

    .project-item, .service-item {
        width: 100%; /* Make items take full width */
        padding: 10px; /* Adjust padding for smaller screens */
        max-width: 80%; /* Limit width to 80% of the screen */
        margin: 0 auto; /* Center the blocks */
    }

    .project-item h3, .service-item h3 {
        font-size: 1.2em; /* Adjust font size */
    }

    .project-item p, .service-item p {
        font-size: 0.9em; /* Adjust font size */
    }

    /* Adjust spacing for 'Welkom' text on smaller screens */
    .welcome {
        position: relative; /* Change to relative positioning */
        margin-bottom: 20px; /* Add spacing below the welcome text */
        text-align: center; /* Center the text */
    }

    .content {
        margin-top: 0; /* Remove extra margin to avoid overlap */
    }
}

body {
    font-family: Arial, sans-serif;
}

#calendar {
    display: grid;
    grid-template-rows: auto 1fr; /* Eerste rij voor headers, tweede rij voor dagen */
    grid-template-columns: repeat(7, 1fr); /* Verdeel alle kolommen gelijk */
    gap: 5px;
    margin: 20px auto;
    width: 90%;
    max-width: 800px; /* Breder voor meer ruimte */
}

.day {
    border: 1px solid #444; /* Donkerdere rand */
    padding: 15px; /* Meer padding voor grotere vakjes */
    text-align: left; /* Tekst links uitlijnen */
    background-color: #1c1c1c; /* Donkergrijze achtergrond */
    color: #FEFF66; /* Gele tekst */
    min-height: 120px; /* Standaard hoogte voor meerdere diensten */
    border-radius: 5px; /* Ronde hoeken */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Subtiele schaduw */
}

#day-headers {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* Verdeel alle kolommen gelijk */
    gap: 5px;
    margin: 10px auto; /* Voeg wat ruimte toe boven de kalender */
    width: 90%;
    max-width: 800px; /* Breder voor meer ruimte */
}

.header {
    font-weight: bold;
    background-color: #343a40; /* Donkerdere achtergrond voor headers */
    color: #FEFF66; /* Gele tekst */
    text-align: center;
    padding: 5px; /* Minder padding voor kleinere hokjes */
    border-radius: 5px; /* Ronde hoeken */
    height: 40px; /* Stel een vaste hoogte in */
    line-height: 40px; /* Zorg dat de tekst gecentreerd wordt binnen de hoogte */
    box-shadow: none; /* Verwijder schaduw voor een subtielere look */
}

.event-day {
    background-color: #2c2c2c; /* Donkergrijze achtergrond voor dagen met evenementen */
    border: 2px solid #FFD700; /* Gouden rand */
}

.event {
    background-color: #FFD700; /* Gouden achtergrond voor evenementen */
    color: #000000; /* Zwarte tekst */
    padding: 5px;
    margin-top: 5px;
    border-radius: 3px; /* Ronde hoeken */
    font-size: 14px; /* Iets grotere tekst */
    text-decoration: none; /* Verwijder onderstreping */
    display: block; /* Maak de hele link klikbaar */
    overflow: hidden; /* Verberg tekst die buiten het vakje valt */
    white-space: nowrap; /* Voorkom tekstomloop */
    text-overflow: ellipsis; /* Voeg "..." toe bij lange tekst */
}

.event:hover {
    background-color: #FFC107; /* Lichtere gouden kleur bij hover */
    color: #000000; /* Zwarte tekst */
}

#calendar-controls {
    text-align: center;
    margin-bottom: 20px;
}

#calendar-controls button {
    padding: 10px 15px;
    margin: 0 10px;
    cursor: pointer;
    background-color: #FFD700; /* Gouden achtergrond */
    color: #000000; /* Zwarte tekst */
    border: none;
    border-radius: 5px; /* Ronde hoeken */
    font-size: 14px;
    transition: background-color 0.3s;
}

#calendar-controls button:hover {
    background-color: #FFC107; /* Lichtere gouden kleur bij hover */
}

.tasks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.task-item {
    border: 1px solid #FEFF66;
    border-radius: 8px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #1c1c1c;
    transition: background-color 0.3s, color 0.3s;
}

.task-item h3 {
    color: #FEFF66;
    margin: 5px 0;
}

.task-item p {
    margin: 5px 0;
    color: #FEFF66;
}

.task-link {
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    color: #FEFF66;
    background-color: #000000;
    border: 1px solid #FEFF66;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.task-link:hover {
    background-color: #FFD700;
    color: #000000;
}

.open-services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.service-item {
    border: 1px solid #FEFF66;
    border-radius: 8px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #1c1c1c;
    transition: background-color 0.3s, color 0.3s;
}

.service-item h3 {
    color: #FEFF66;
    margin: 5px 0;
}

.service-item p {
    margin: 5px 0;
    color: #FEFF66;
}

.service-item:hover {
    background-color: #FFD700;
    color: #000000;
}