Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
/* Adding new filter styling while preserving existing styles */
/* Keep all existing CSS rules intact */
/* Enhanced Filter Section Styling */
.filter-options {
background: linear-gradient(to right, #f8f9fa, #ffffff);
margin: 2rem auto;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.container-filter {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
padding: 1rem;
background: rgba(255, 255, 255, 0.9);
border-radius: 8px;
}
.filter-item {
background: #ffffff;
padding: 1.25rem;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.filter-item:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.filter-item label {
display: block;
color: #2c3e50;
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 0.75rem;
text-transform: uppercase;
}
.filter-item select,
.filter-item input {
width: 100%;
padding: 0.75rem;
border: 2px solid #e9ecef;
border-radius: 6px;
font-size: 1rem;
color: #495057;
transition: all 0.3s ease;
appearance: none;
background-color: #fff;
}
.filter-item select {
min-height: 120px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23495057' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 0.75rem center;
}
.filter-item input:focus,
.filter-item select:focus {
border-color: #4299e1;
box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
outline: none;
}
.filter-form {
display: contents;
}
/* Price range styling */
.price-inputs {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.price-inputs input {
width: 100%;
}
/* Button styling */
.filter-buttons {
grid-column: 1 / -1;
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 1.5rem;
}
.filter-button {
background: linear-gradient(45deg, #2ecc71, #27ae60);
color: white;
border: none;
padding: 0.75rem 2rem;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 2px 6px rgba(46, 204, 113, 0.2);
height: 65px;
}
.clear-button {
background: linear-gradient(45deg, #e74c3c, #c0392b);
color: white;
border: none;
padding: 0.75rem 2rem;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 2px 6px rgba(231, 76, 60, 0.2);
height: 65px;
}
.filter-button:hover,
.clear-button:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.filter-button:active,
.clear-button:active {
transform: translateY(0);
}
/* Helper text */
.select-hint {
color: #666;
font-size: 0.8rem;
margin-top: 0.25rem;
font-style: italic;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.container-filter {
grid-template-columns: 1fr;
gap: 1rem;
}
.filter-buttons {
flex-direction: column;
gap: 0.5rem;
}
.filter-button,
.clear-button {
width: 100%;
}
.price-inputs {
grid-template-columns: 1fr;
}
}
/* Keep the rest of your existing CSS styles below */
* {
margin: 0;
padding: 0;
list-style: none;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
background-color: #f4f4f4;
}
.container-filter {
width: 80%;
margin: auto;
overflow: hidden;
display: flex;
flex-direction: row;
gap: 1.5rem;
}
.footer-container {
height: 60px;
background-color: #333;
color: #fff;
text-align: center;
line-height: 60px; /* Om de tekst verticaal te centreren */
position: relative;
bottom: 0;
width: 100%;
}
.footer-About {
height: 60px;
background-color: #333;
color: #fff;
text-align: center;
line-height: 60px; /* Om de tekst verticaal te centreren */
position: relative;
bottom: 0;
width: 100%;
}
.footer-overons{
margin-bottom: -1rem;
position: absolute;
width: 100%;
bottom: 0;
left: 0;
}
header {
background-color: whitesmoke;
color: #ffffff;
padding: 10px 0;
}
header h1 {
text-align: center;
margin: 0;
}
nav ul {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
color: black;
text-decoration: none;
font-weight: bold;
}
nav ul li.login-signup {
margin-left: auto; /* Zorgt ervoor dat de login/signup knop naar rechts wordt geduwd */
}
nav ul li.login-signup a {
color: black;
text-decoration: none;
margin: 0 5px;
}
nav ul li.login-signup span {
color: black; /* Kleur van de scheidingslijn tussen login en signup */
}
.hero {
background: url('https://static.rdc.moveaws.com/images/hero/default/2021-11/jpg/hp-hero-desktop.jpg') no-repeat center center/cover;
height: 550px;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
text-align: center;
}
.hero-content h2 {
font-size: 2.5em;
margin-bottom: 10px;
color: white;
}
/* Container for the search bar */
.search-container {
display: flex;
align-items: center;
justify-content: center;
margin-top: 50px;
}
.search{
display: flex;
}
/* Styling the search input */
.search-input {
width: 400px;
padding: 10px 20px;
border-radius: 50px;
border: 1px solid #ccc;
font-size: 16px;
outline: none;
}
/* Styling the search button */
.search-button {
background-color: #fff;
border: none;
margin-left: -40px;
cursor: pointer;
margin-left: 1rem;
}
/* Adjusting the search icon */
.search-button img {
width: 24px;
height: 24px;
}
.featured-properties {
padding: 20px;
background: #ffffff;
}
.huis-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
margin-top: 3rem;
}
.search-form {
all: unset;
}
.search-form {
display: block;
}
.title-aanbod{
margin-left: 4rem;
}
.huis-item {
background: #f4f4f4;
margin: 10px;
padding: 15px;
border-radius: 5px;
width: calc(24% - 20px); /* Vier huizen per rij */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.huis-item img {
width: 100%;
border-radius: 5px;
}
.huis-item h3 {
font-size: 1.2em;
}
.huis-item p {
margin: 5px 0;
}
.more-info {
display: inline-block;
margin-top: 10px;
padding: 10px 15px;
background: #35424a;
color: #ffffff;
text-decoration: none;
border-radius: 5px;
}
.help-section {
text-align: center;
margin-top: 50px;
gap: 1rem;
display: flex;
flex-direction: column;
}
/* Tabs styles */
.tabs {
display: inline-flex;
margin-bottom: 20px;
}
.tab {
padding: 10px 20px;
border: 2px solid #000;
border-radius: 50px;
cursor: pointer;
margin-right: 10px;
}
.tab.active {
background-color: black;
color: white;
}
.tab:not(.active) {
background-color: white;
color: black;
}
/* Card container */
.card-container {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 1rem;
}
/* Card styles */
.card {
border: 1px solid #ccc;
padding: 20px;
width: 350px;
border-radius: 10px;
text-align: left;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.card img {
float: right;
width: 40px;
height: 40px;
}
.card h3 {
margin-top: 0;
}
.card p {
font-size: 14px;
color: #666;
}
.card a {
font-weight: bold;
color: black;
text-decoration: none;
}
.card a:hover {
text-decoration: underline;
}
.contact-section {
text-align: center;
padding: 50px 20px;
background-color: #fff;
}
.containerContact {
max-width: 800px;
margin: 0 auto;
}
h1 {
font-size: 36px;
margin-bottom: 10px;
}
h2 {
font-size: 28px;
margin-top: 0;
}
h3 {
font-size: 18px;
margin: 20px 0 10px;
}
p {
font-size: 16px;
line-height: 1.6;
margin: 0 0 20px;
}
/* Form styling */
.contact-form {
display: flex;
flex-direction: column;
gap: 15px;
margin-top: 30px;
}
.form-row {
display: flex;
gap: 15px;
justify-content: space-between;
}
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px;
border-radius: 25px;
border: 1px solid #ccc;
font-size: 16px;
}
.contact-form textarea {
resize: none;
height: 100px;
}
/* Button styling */
.contact-form button {
background-color: #00a650;
color: white;
padding: 12px 30px;
border: none;
border-radius: 25px;
cursor: pointer;
font-size: 16px;
width: 150px;
margin: 0 auto;
display: block;
}
.contact-form button:hover {
background-color: #007b3c;
}
/* Styling voor de inlog- en registratiepagina's */
/* Algemene reset voor de login- en registratiepagina's */
.login-page {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.login-container {
background-color: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 400px;
text-align: center;
}
.login-container h2 {
margin-bottom: 25px;
font-size: 28px;
color: #333;
}
.login-container input {
width: 100%;
padding: 15px;
margin-bottom: 20px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 16px;
background-color: #f9f9f9;
transition: border-color 0.2s;
}
.login-container input:focus {
outline: none;
border-color: #007bff;
background-color: white;
}
.login-container button {
width: 100%;
padding: 15px;
background-color: #007bff;
color: white;
font-size: 16px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.login-container button:hover {
background-color: #0056b3;
}
.login-container p {
margin-top: 20px;
font-size: 14px;
color: #666;
}
.login-container a {
color: #007bff;
text-decoration: none;
}
.login-container a:hover {
text-decoration: underline;
}
.error {
color: red;
font-size: 14px;
margin-bottom: 15px;
}
/* Algemene body-styling voor het dashboard */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
.dashboard-container {
display: flex;
height: 100vh;
}
/* Sidebar styling */
.sidebar {
background-color: #2c3e50;
width: 250px;
padding: 20px;
color: white;
}
.sidebar h2 {
color: white;
margin-bottom: 30px;
}
.sidebar nav ul {
list-style-type: none;
padding: 0;
}
.sidebar nav ul li {
margin-bottom: 20px;
}
.sidebar nav ul li a {
color: white;
text-decoration: none;
font-size: 16px;
display: block;
padding: 10px;
transition: background 0.3s ease;
}
.sidebar nav ul li a:hover {
background-color: #34495e;
border-radius: 5px;
}
/* Main content styling */
.main-content {
flex-grow: 1;
padding: 20px;
}
.main-content header h1 {
font-size: 28px;
margin-bottom: 20px;
}
.main-content section {
display: flex;
gap: 20px;
}
/* Styling voor kaarten (statistieken) */
.card {
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 300px;
}
.card h3 {
font-size: 18px;
margin-bottom: 10px;
}
.card p {
font-size: 14px;
color: #666;
}
/* Dashboard CSS */
.main-content header{
color: black;
}
.dashboard-nav{
display: flex;
flex-direction: column;
justify-content: center;
}
/* About us page */
.about-section {
padding: 50px 20px;
background-repeat: no-repeat;
background-size: cover;
}
.About-container{
max-width: 800px;
margin: 0 auto;
}
/* Villa Management Page Styling */
.villa-management-container {
width: 90%;
margin: 50px auto;
background: #ffffff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
color: #333;
}
/* Titel Styling */
.villa-management-container h1 {
font-size: 32px;
text-align: center;
margin-bottom: 20px;
color: #2c3e50;
}
/* Table Styling */
.villa-management-container table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
font-size: 16px;
}
.villa-management-container th,
.villa-management-container td {
padding: 15px;
text-align: center;
border-bottom: 1px solid #ddd;
}
.villa-management-container th {
background-color: #35424a;
color: white;
font-weight: bold;
}
.villa-management-container td img {
width: 80px;
border-radius: 5px;
}
/* Hover effect on table rows */
.villa-management-container tr:hover {
background-color: #f9f9f9;
}
/* Button Styling */
.villa-management-container .btn, .btn-delete, .btn-back {
display: inline-block;
padding: 10px 20px;
font-size: 14px;
color: white;
border-radius: 5px;
text-align: center;
margin: 5px;
text-decoration: none;
transition: background-color 0.3s ease;
}
.villa-management-container .btn {
background-color: #007bff;
}
.villa-management-container .btn:hover {
background-color: #0056b3;
}
.villa-management-container .btn-delete {
background-color: #dc3545;
}
.villa-management-container .btn-delete:hover {
background-color: #c82333;
}
.villa-management-container .btn-back {
background-color: #6c757d;
color: white;
margin-top: 20px;
}
.villa-management-container .btn-back:hover {
background-color: #5a6268;
}
/* Algemene reset en basisinstellingen */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
color: #333;
}
/* Styling voor het admin dashboard */
.admin-container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.properties{
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
.propertie{
display: flex;
flex-direction: column;
}
h1, h2 {
color: #333;
margin-bottom: 20px;
}
.admin-actions {
margin-bottom: 20px;
}
/* Formulier styling */
form {
display: flex;
flex-direction: column;
gap: 15px; /* Ruimte tussen de elementen */
}
input[type="text"],
input[name="description"],
input[type="number"],
input[type="file"],
textarea,
select {
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
transition: border-color 0.3s;
}
input[type="text"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
border-color: #007bff; /* Kleur bij focus */
}
/* Knoppen styling */
button {
padding: 10px;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3; /* Donkerdere kleur bij hover */
}
/* Tabel styling */
.villa-table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
.villa-table th, .villa-table td {
padding: 12px;
border: 1px solid #ccc;
text-align: left;
}
.villa-table th {
background-color: #007bff;
color: white;
}
/* Actieknoppen in de tabel */
.btn-edit, .btn-delete {
padding: 5px 10px;
border-radius: 4px;
color: white;
text-decoration: none;
}
.btn-edit {
background-color: #28a745; /* Groen voor bewerken */
}
.btn-edit:hover {
background-color: #218838; /* Donkerder groen bij hover */
}
.btn-delete {
background-color: #dc3545; /* Rood voor verwijderen */
}
.btn-delete:hover {
background-color: #c82333; /* Donkerder rood bij hover */
}
/* Logout button styling */
.btn-logout {
padding: 10px 15px;
background-color: #dc3545; /* Rood voor uitloggen */
color: white;
text-decoration: none;
border-radius: 4px;
}
.btn-logout:hover {
background-color: #c82333; /* Donkerder rood bij hover */
}
/* Algemene styling voor berichten en notificaties */
.notification {
padding: 10px;
margin-bottom: 20px;
border-radius: 4px;
}
.notification.success {
background-color: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.notification.error {
background-color: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
/* Knop voor villa management */
.btn-manage-villas {
display: inline-block;
padding: 15px 25px;
background-color: #007bff; /* Blauwe achtergrond */
color: white;
text-decoration: none;
border-radius: 4px;
font-size: 12px;
text-align: center;
transition: background-color 0.3s;
margin-top: 20px; /* Ruimte boven de knop */
}
.btn-manage-villas:hover {
background-color: #0056b3; /* Donkerdere kleur bij hover */
}
/* Edit Villa Page Styling */
.edit-villa-container {
width: 80%;
margin: 50px auto;
background: #ffffff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
color: #333;
}
.edit-villa-container h1 {
font-size: 32px;
text-align: center;
margin-bottom: 20px;
color: #2c3e50;
}
/* Form Styling */
.edit-villa-form {
display: flex;
flex-direction: column;
gap: 20px;
}
.edit-villa-form label {
font-size: 16px;
color: #35424a;
font-weight: bold;
margin-bottom: 5px;
}
.edit-villa-form input,
.edit-villa-form textarea,
.edit-villa-form select {
width: 100%;
padding: 12px;
border-radius: 5px;
border: 1px solid #ddd;
font-size: 16px;
background-color: #f9f9f9;
transition: border-color 0.2s;
}
.edit-villa-form input:focus,
.edit-villa-form textarea:focus,
.edit-villa-form select:focus {
outline: none;
border-color: #007bff;
background-color: white;
}
.edit-villa-form textarea {
resize: vertical;
height: 100px;
}
/* Button Styling */
.edit-villa-container .btn-save,
.edit-villa-container .btn-cancel {
display: inline-block;
padding: 10px 20px;
font-size: 16px;
color: white;
border-radius: 5px;
text-align: center;
margin: 10px 5px 0 0;
text-decoration: none;
transition: background-color 0.3s ease;
cursor: pointer;
}
.edit-villa-container .btn-save {
background-color: #28a745;
}
.edit-villa-container .btn-save:hover {
background-color: #218838;
}
.edit-villa-container .btn-cancel {
background-color: #6c757d;
}
.edit-villa-container .btn-cancel:hover {
background-color: #5a6268;
}
/* Algemene stijlen */
body {
font-family: Arial, sans-serif;
background-color: #f8f8f8;
color: #333;
margin: 0;
padding: 0;
}
h1, h2, h3 {
color: #333;
}
/* a {
text-decoration: none;
color: #4CAF50;
} */
a:hover {
color: #388e3c;
}
/* Container voor overzicht van villa's */
.villa-overview {
display: flex;
flex-wrap: wrap;
gap: 20px;
padding: 40px;
justify-content: center;
}
/* Villa-item styling */
.huis-item {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 8px;
overflow: hidden;
width: 350px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}
.huis-item:hover {
transform: translateY(-5px);
}
.huis-item img {
width: 100%;
height: auto;
border-bottom: 1px solid #ddd;
}
.huis-item h2 {
font-size: 1.5em;
color: #333;
margin: 16px;
}
.huis-item p {
font-size: 0.9em;
margin: 8px 16px;
color: #666;
}
.huis-item .price {
font-weight: bold;
color: #4CAF50;
}
.huis-item .more-info {
display: block;
margin: 16px;
padding: 10px 15px;
background-color: #4CAF50;
color: white;
text-align: center;
font-weight: bold;
border-radius: 5px;
transition: background-color 0.3s;
}
.huis-item .more-info:hover {
background-color: #45a049;
}
/* Villa-details pagina */
.villa-details {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.villa-details-images {
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}
.villa-details div img {
width: 30%;
border-radius: 8px;
margin-bottom: 20px;
}
.villa-details h1 {
font-size: 2em;
color: #333;
margin-bottom: 10px;
}
.villa-details p {
font-size: 1em;
line-height: 1.6;
color: #555;
margin-bottom: 15px;
}
.villa-details .back-button {
display: inline-block;
padding: 10px 20px;
background-color: #4CAF50;
color: white;
font-weight: bold;
border-radius: 5px;
margin-top: 20px;
transition: background-color 0.3s;
}
.villa-details .back-button:hover {
background-color: #45a049;
}
/* Responsiveness */
@media (max-width: 768px) {
.villa-overview {
padding: 20px;
gap: 15px;
}
.huis-item {
width: 100%;
}
.villa-details {
padding: 15px;
margin: 20px;
}
}
/* Responsive Design for Edit Villa Form */
@media (max-width: 768px) {
.edit-villa-container {
width: 90%;
padding: 20px;
}
.edit-villa-container h1 {
font-size: 28px;
}
.edit-villa-form input,
.edit-villa-form textarea,
.edit-villa-form select {
font-size: 14px;
}
.edit-villa-container .btn-save,
.edit-villa-container .btn-cancel {
font-size: 14px;
padding: 8px 15px;
}
}
/* Dashboard CSS End */
@media (max-width: 450px) {
.huis-list, .card-container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.huis-item{
width: 100%;
}
}
/* Responsive Styling for Mobile */
@media (max-width: 768px) {
.villa-management-container {
padding: 20px;
}
.villa-management-container table {
font-size: 14px;
}
.villa-management-container th,
.villa-management-container td {
padding: 10px;
}
.villa-management-container .btn,
.btn-delete,
.btn-back {
font-size: 12px;
padding: 8px 15px;
}
}
/* Slideshow container */
.image-slider {
position: relative;
max-width: 100%;
overflow: hidden;
margin-bottom: 20px; /* Verhoog de afstand tussen sliders */
}
/* Slideshow images */
.slides {
display: flex;
transition: transform 0.5s ease-in-out;
}
/* Each individual slide */
.slide {
display: none; /* Initially hide all slides */
width: 100%;
}
img {
width: 100%;
height: auto;
}
/* Next/previous buttons */
.prev, .next {
position: absolute;
top: 50%;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
background-color: rgba(0, 0, 0, 0.5);
border: none;
cursor: pointer;
z-index: 1;
}
.prev {
left: 0;
}
.next {
right: 0;
}
/* On hover, show next/prev buttons */
.image-slider:hover .prev, .image-slider:hover .next {
opacity: 1;
}
.huur-button{
display: inline-block;
padding: 10px 20px;
background-color: #4CAF50;
color: white;
font-weight: bold;
border-radius: 5px;
margin-top: 20px;
transition: background-color 0.3s;
cursor: pointer;
}
/* .filterStyle{
width: 30%;
} */
.pdf-upload{
display: inline-block;
padding: 10px 20px;
background-color: #4CAF50;
color: white;
font-weight: bold;
border-radius: 5px;
margin-top: 20px;
transition: background-color 0.3s;
text-decoration: none;
list-style: none;
}
a:hover {
text-decoration: none; /* Verwijdert onderstreping */
color: inherit; /* Maakt de kleur hetzelfde als de normale staat */
}
a{
text-decoration: none;
color: white;
}
/* Existing styles... */
/* Ligging Management Styles */
.location-management {
max-width: 800px;
margin: 2rem auto;
padding: 2rem;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.location-management h1 {
color: #2c3e50;
margin-bottom: 1.5rem;
text-align: center;
font-size: 24px;
}
.location-form {
display: flex;
flex-direction: column;
gap: 1rem;
}
.location-form input[type="text"] {
padding: 12px;
border: 1px solid #e0e0e0;
border-radius: 6px;
font-size: 16px;
transition: border-color 0.3s ease;
}
.location-form input[type="text"]:focus {
border-color: #3498db;
outline: none;
}
.location-form button {
padding: 12px 24px;
border: none;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 500;
}
.location-form button[name="add"] {
background-color: #2ecc71;
color: white;
}
.location-form button[name="edit"] {
background-color: #3498db;
color: white;
}
.location-form button:hover {
transform: translateY(-2px);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.location-table {
width: 100%;
border-collapse: collapse;
margin: 1.5rem 0;
}
.location-table th {
background-color: #34495e;
color: white;
padding: 12px;
text-align: left;
}
.location-table td {
padding: 12px;
border-bottom: 1px solid #e0e0e0;
}
.location-table tr:hover {
background-color: #f8f9fa;
}
.form-group {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.form-group input[type="text"] {
flex: 1;
}
/* Responsive design for smaller screens */
@media (max-width: 768px) {
.location-management {
margin: 1rem;
padding: 1rem;
}
.form-group {
flex-direction: column;
}
.location-form button {
width: 100%;
}
}