/* ===== ALGEMEEN ===== */
html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background-color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    line-height: 1.5;
    font-size: 1rem;
}
/* LOGO */

header img {
    position: absolute;
    z-index: 10000;
    top: 0.5rem;
    left: 0.5rem;
    width: 50px;
    height: auto;
    max-width: 7%;
    max-height: 9%;
}

@media (max-width: 768px) {
    header img {
        width: 40px;
        height: auto;
        max-width: 15%;
        max-height: 8%;
        top: 0.1rem;
        left: 0.1rem;
    }
}

@media (max-width: 425px) {
    header img {
        width: 30px;
        height: auto;
        max-width: 15%;
        max-height: 4%;
        top: 0.1rem;
        left: 0.1rem;
    }
}

@media (max-width: 320px) {
    header img {
        position: absolute;
        width: 30px;
        height: auto;
        max-width: 15%;
        max-height: 4%;
        top: 0.1rem;
        left: 0.1rem;
    }
}

h1 {
    text-align: center;
    color: #000000;
    font-size: 56px;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 20px;
}

h2, h3, h4, h5, h6 {
    color: #000000;
    margin-top: 0;
}

p {
    color: #000000;
    font-size: 18px;
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.alert {
  padding: 16px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  animation: slideIn 0.4s ease;
}

.alert-error {
  background-color: rgba(244, 67, 54, 0.9);
  color: white;
  border-left: 4px solid #f44336;
}

.alert-success {
  background-color: rgba(76, 175, 80, 0.9);
  color: white;
  border-left: 4px solid #4CAF50;
}


/* ===== LINKS ===== */
a,
a:link,
a:visited {
    color: #000000;
    text-decoration: none;
    transition: 0.2s ease;
}

a:hover {
    color: #000000;
}

/* ===== LIJSTEN ===== */
li {
    display: inline-block;
}

/* ===== MAIN CONTENT ===== */
.main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    min-height: 100%;
}

/* ===== NAVBAR ===== */
nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 10%;
    margin: 0;
    padding: 1rem 2rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
    font-size: 1rem;
    color: #000000;
    z-index: 9  99;
    box-sizing: border-box;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 1rem;
    list-style: none;
    flex-wrap: wrap;
    gap: 2rem;
}

nav li {
    margin: 0;
}

nav a {
    color: #000000;
    font-weight: 500;
    padding: 12px 18px;
    border-radius: 14px;
}

    nav a:hover {
        background-color: #f9eaea;
        color: #ef0000;
    }

nav a:active {
    background-color: #f9eaea;
    color: #ef0000;
}

/* ===== FORMULIEREN ===== */
input,
select,
textarea {
    width: 60%;
    padding: 14px 16px;
    border: 1px solid #d5dbe3;
    border-radius: 14px;
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
    transition: 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #ef0000;
    box-shadow: 0 0 0 4px rgba(239, 0, 0, 0.08);
}

/* ===== BUTTONS ===== */
button {
    background-color: #ef0000;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}

button:hover {
    background-color: #d90000;
    transform: translateY(-1px);
}

button:active {
    transform: translateY(0);
}

/* ===== TABELLEN ===== */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

td.fitwidth {
    width: 1px;
    white-space: nowrap;
}

td {
    color: #0d2345;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 500;
    min-width: 20px;
    padding: 16px;
    border-bottom: 1px solid #edf0f3;
}

th {
    background-color: #f9eaea;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #edf0f3;
}

tr.clicked {
    background-color: #fff3f3;
}

#clicked {
    background-color: #ffe2e2;
}

/* ===== CONTAINERS ===== */
.container {
    height: 60%;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

/* ===== FOOTER ===== */
.site-footer {
  margin-top: 80px;
  padding: 48px 0 24px;
  background-color: #f8f9fb;
  border-top: 1px solid #e5e7eb;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 80px;
}

.footer-column h2 {
  color: #e60012;
  font-size: 24px;
  margin-bottom: 18px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #0f172a;
}

.footer-column p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-column a {
  display: block;
  color: #334155;
  text-decoration: none;
  margin-bottom: 12px;
  transition: 0.2s ease;
}

.footer-column a:hover {
  color: #e60012;
}

.footer-bottom {
  max-width: 1200px;
  margin: 36px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* ===== LOGIN PAGINA APART ===== */
.login-container {
    min-height: calc(100vh - 180px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 60px 120px;
}

.login-container form {
    width: 100%;
    max-width: 720px;
}

.login-box {
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 24px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    padding: 40px 120px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-box label {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-top: 6px;
}

.login-input {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 36px;
    font-size: 1rem;
    border: 1px solid #d5dbe3;
    border-radius: 14px;
    background-color: #ffffff;
    color: #000000;
    outline: none;
    transition: 0.2s ease;
}

.login-input::placeholder {
    color: #9aa3af;
}

.login-input:focus {
    border-color: #ef0000;
    box-shadow: 0 0 0 4px rgba(239, 0, 0, 0.08);
}

.btn {
    width: 100%;
    margin-top: 18px;
    padding: 16px 20px;
    border: none;
    border-radius: 14px;
    background-color: #ef0000;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn:hover {
    background-color: #d90000;
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.login-box a {
    margin-top: 14px;
    text-align: center;
    text-decoration: none;
    color: #ef0000;
    font-size: 0.98rem;
    font-weight: 600;
    transition: 0.2s ease;
}

.login-box a:hover {
    text-decoration: underline;
    color: #c80000;
}

.login-box br {
    display: none;
}

.login-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 24px;
}

.role-switch {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.role-option {
  flex: 1;
  padding: 12px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  background-color: #fff;
  transition: 0.2s ease;
}

.role-option input {
  display: none;
}

.role-option.active {
  background-color: #ef4444;
  color: white;
  border-color: #ef4444;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .main {
        padding: 10px;
    }

    nav {
        width: 100%;
        padding: auto;
        height: 8%;
    }

    nav ul {
        font-size: 1rem;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    nav li {
        width: auto;
        text-align: center;
    }

    h1 {
        font-size: 38px;
        margin-top: 36px;
    }

    input,
    select,
    textarea {
        width: 100%;
    }

    .login-container {
        padding: 20px 16px 40px;
        align-items: flex-start;
    }

    .login-box {
        padding: 28px 20px;
        border-radius: 18px;
    }

    td,
    th {
        font-size: 14px;
        padding: 12px;
    }
}

@media (max-width: 320px) {

    nav {
        width: 100%;
        padding: 0;
    }
    nav ul{
        font-size: 0.6rem;
    }
}

/* HERO */
.hero {
    background-color: #ef0000;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.hero-content {
    max-width: 950px;
}

.hero h1 {
    color: #ffffff;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 28px;
}

.hero p {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto 36px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-light {
    background-color: #ffffff;
    color: #ef0000;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* WHY SECTION */
.why-section {
    background-color: #f5f5f5;
    padding: 90px 20px;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-section h2 {
    font-size: 56px;
    color: #000000;
    margin-bottom: 12px;
}

.why-subtitle {
    font-size: 22px;
    color: #4b5563;
    margin-bottom: 50px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.card h3 {
    font-size: 28px;
    color: #0d2345;
    margin-bottom: 14px;
}

.card p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.6;
}

/* ===== HOE HET WERKT ===== */
.steps-section {
    background-color: #f3f3f3;
    padding: 110px 20px 120px;
}

.steps-container {
    max-width: 1280px;
    margin: 0 auto;
}

.steps-section h2 {
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    color: #0d2345;
    margin: 0 0 18px;
}

.steps-subtitle {
    text-align: center;
    font-size: 22px;
    color: #4b5563;
    margin: 0 0 64px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.step-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 34px 34px 30px;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.step-number {
    font-size: 68px;
    font-weight: 700;
    color: #f7dede;
    line-height: 1;
    margin-bottom: 22px;
}

.step-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0d2345;
    margin: 0 0 14px;
}

.step-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
    max-width: 260px;
}

.step-arrow {
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 56px;
    color: #ff9d9d;
    font-weight: 300;
    line-height: 1;
}

/* responsive */
@media (max-width: 1100px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        min-height: auto;
    }

    .step-arrow {
        display: none;
    }

    .steps-section h2 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {

    header img {
        position: fixed;
        z-index: 1000;
        top: .5rem;
        left: .5rem;
        width: auto;
        height: 3rem;
        max-width: 15%;
    }

    .steps-section {
        padding: 70px 16px 80px;
    }

    .steps-section h2 {
        font-size: 38px;
    }

    .steps-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .step-card {
        padding: 24px;
        border-radius: 20px;
    }

    .step-number {
        font-size: 52px;
    }

    .step-content h3 {
        font-size: 24px;
    }

    .step-content p {
        font-size: 16px;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 54px;
    }

    .hero p {
        font-size: 20px;
    }

    .why-section h2 {
        font-size: 42px;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 18px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 500px;
        padding: 60px 16px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        font-size: 18px;
    }

    .why-section {
        padding: 60px 16px;
    }

    .why-section h2 {
        font-size: 34px;
    }

    .why-subtitle {
        font-size: 18px;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   LOGIN PAGINA
========================= */

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 24px;
}

.login-container > div {
    width: 100%;
    max-width: 500px;
}

.login-hero {
    text-align: center;
    margin-bottom: 24px;
}

.login-hero h2 {
    font-size: 2rem;
    color: #ef4444;
    margin-bottom: 8px;
}

.login-hero p {
    color: #6b7280;
    font-size: 1rem;
}

.login-box {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.login-box label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #111827;
}

.login-input {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    margin-bottom: 20px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    background-color: #ffffff;
}

.login-input:focus {
    outline: none;
    border-color: #ef4444;
}

.login-box a {
    display: inline-block;
    margin-top: 14px;
    color: #ef4444;
    font-size: 0.95rem;
}

.login-box a:hover {
    text-decoration: underline;
}

/* =========================
   KNOPPEN
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn:hover {
    background-color: #dc2626;
}

/* =========================
   LOGIN PAGINA
========================= */

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 24px;
}

.login-container > div {
    width: 100%;
    max-width: 500px;
}

.login-hero {
    text-align: center;
    margin-bottom: 24px;
}

.login-hero h2 {
    font-size: 2rem;
    color: #ef4444;
    margin-bottom: 8px;
}

.login-hero p {
    color: #6b7280;
    font-size: 1rem;
}

.login-box {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.login-box label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #111827;
}

.login-input {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    margin-bottom: 20px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    background-color: #ffffff;
}

.login-input:focus {
    outline: none;
    border-color: #ef4444;
}

.login-box a {
    display: inline-block;
    margin-top: 14px;
    color: #ef4444;
    font-size: 0.95rem;
}

.login-box a:hover {
    text-decoration: underline;
}

/* =========================
   KNOPPEN
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn:hover {
    background-color: #dc2626;
}

/* =========================
   TITELS OP PAGINA'S
========================= */

h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.login-subtitle,
.admin-subtitle {
    text-align: left;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-filter-form {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .admin-page {
        padding: 32px 16px 48px;
    }

    .admin-header h1,
    h1 {
        font-size: 2.2rem;
    }

    .stat-card {
        padding: 20px;
    }

    .admin-table thead {
        display: none;
    }

    .admin-table,
    .admin-table tbody,
    .admin-table tr,
    .admin-table td {
        display: block;
        width: 100%;
    }

    .admin-table tr {
        border-bottom: 1px solid #e5e7eb;
        padding: 12px 0;
    }

    .admin-table td {
        border: none;
        padding: 10px 16px;
    }

    .admin-actions {
        justify-content: stretch;
    }

    .export-button {
        width: 100%;
    }
}

/* =========================
   WERKNEMERS PAGINA
========================= */

.werknemers-page {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 24px;
}


/* HEADER */

.werknemers-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.werknemers-titles {
  text-align: center;
  margin-bottom: 30px;
}

/* ZOEKBALK */

.werknemers-search {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}

/* =========================
   ZOEKBALK
========================= */

.werknemers-search {
  grid-column: 3;
  justify-self: end;

  display: flex;
  gap: 12px;
}

.werknemers-search input {
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  min-width: 250px;
  font-size: 14px;
}

.werknemers-search button {
  background: #e60012;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}


/* =========================
   TABEL
========================= */

.werknemers-table-wrapper {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.werknemers-table {
  width: 100%;
  border-collapse: collapse;
}

.werknemers-table th {
  background: #e60012;
  color: white;
  text-align: left;
  padding: 16px;
  font-size: 13px;
  text-transform: uppercase;
}

.werknemers-table td {
  padding: 18px 16px;
  border-bottom: 1px solid #e5e7eb;
  color: #334155;
}

.werknemers-table tr:last-child td {
  border-bottom: none;
}


/* =========================
   ACTIE KNOPPEN
========================= */

.actie-knoppen {
  display: flex;
  gap: 10px;
}

.btn-edit,
.btn-delete {
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: none;
  transition: none;
}

/* BEWERKEN */

.btn-edit {
  background: #475569;
  color: white;
}

/* VERWIJDEREN */

.btn-delete {
  background: #e60012;
  color: white;
}

/* GEEN HOVER EFFECT */

.btn-edit:hover,
.btn-delete:hover {
  background: inherit;
  color: inherit;
  transform: none;
  box-shadow: none;
}


/* =========================
   BEWERKEN PAGINA
========================= */

.form-page {
  max-width: 720px;
  margin: 60px auto;
  padding: 0 24px;
}

.form-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.form-card h1 {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 10px;
}

.form-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 26px;
}

.form-card label {
  display: block;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
}

.form-card input,
.form-card select {
  width: 100%;
  padding: 13px 15px;
  margin-bottom: 20px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 15px;
}

.form-card input:focus,
.form-card select:focus {
  outline: none;
  border-color: #e60012;
  box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.12);
}


/* =========================
   FORM BUTTONS
========================= */

.form-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.btn-primary,
.btn-secondary,
.btn-danger {
  flex: 1;
  text-align: center;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

/* OPSLAAN */

.btn-primary {
  background: #475569;
  color: white;
}

/* ANNULEREN */

.btn-secondary {
  background: #f1f5f9;
  color: #334155;
}

/* VERWIJDEREN */

.btn-danger {
  background: #e60012;
  color: white;
}


/* =========================
   WARNING BOX
========================= */

.warning-box {
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #9a3412;
  padding: 16px;
  border-radius: 12px;
  margin: 20px 0 26px;
  line-height: 1.5;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .werknemers-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .werknemers-titles {
    grid-column: auto;
  }

  .werknemers-search {
    grid-column: auto;
    justify-self: center;
    flex-wrap: wrap;
  }

  .werknemers-search input {
    width: 100%;
    min-width: unset;
  }

  .werknemers-table-wrapper {
    overflow-x: auto;
  }

  .actie-knoppen {
    flex-direction: column;
  }

  .form-actions {
    flex-direction: column;
  }
}

.forgot-password {
  display: block;
  margin-top: 16px;
  margin-bottom: 12px;
  text-align: center;
  color: #ef0000;
  font-weight: 600;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

.message {
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

/* foutmelding (rood) */
.message.error {
  background-color: #ffe5e5;
  color: #d8000c;
  border: 1px solid #d8000c;
}

/* succesmelding (groen) */
.message.success {
  background-color: #e6f9ec;
  color: #2e7d32;
  border: 1px solid #2e7d32;
}

/* ===== NAVBAR ===== */
nav {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 24px 40px;
    background-color: rgb(251, 251, 251);
    border: 1px solid #e5e7eb;
    text-align: center;
    font-size: 18px;
    color: #000000;
    box-sizing: border-box;
}

/* LOGO */
nav img {
    height: 180px;
    width: auto;
    display: block;
    margin: 0 auto 10px;
}

/* MENU LIJST */
nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav li {
    margin: 0 18px;
    display: inline-block;
}

nav a {
    color: #000000;
    font-weight: 500;
    padding: 12px 18px;
    border-radius: 14px;
    text-decoration: none;
}

nav a:hover {
    background-color: #f9eaea;
    color: #ef0000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .main {
        padding-left: 20px;
        padding-right: 20px;
    }

    nav {
        padding: 18px 20px;
    }

    nav img {
        height: 45px;
    }

    nav li {
        display: block;
        margin: 10px 0;
    }
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-box {
    flex: 2;
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.contact-info {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
}

.contact-box label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

.contact-box input,
.contact-box select,
.contact-box textarea {
    width: 100%;
    margin-top: 6px;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    align-items: flex-start;
}


.contact-box {
    flex: 2;
    background: #ffffff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

/* RECHTER CONTAINER */
.contact-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CONTACTGEGEVENS */
.contact-info {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.contact-info h3 {
    margin-bottom: 12px;
}

.contact-info p {
    margin-bottom: 12px;
    line-height: 1.5;
}

/* SNELLE HULP */
.quick-help {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
}

.quick-help h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.quick-help p {
    font-size: 15px;
    color: #4b5563;
}

.response-time {
    margin-top: 10px;
}