:root {
    --pink-365: #ff195d;
    --pink-dark: #c72d59;
    --black-365: #272240;
}

/* =============================== */
/* Blokken - Tabel & Formulier    */
/* =============================== */
.bbm-table {
    width: 100%;
    border-spacing: 0;
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px;
    border-collapse: separate !important;
    border-width: 2px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background-color: white;
}

.bbm-form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    max-width: 100%;
    margin-bottom: 50px;
    margin-top: 75px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0 !important;
    color: #272240 !important;
}

/* =============================== */
/* Tabel inhoud                   */
/* =============================== */
.bbm-th {
    text-align: left;
    padding: 10px 10px !important;
    background-color: #ffffff;
    font-weight: bold;
    border-bottom: 2px solid #ddd;
    color: #272240 !important;
}

.bbm-tr:nth-child(even) {
    background-color: #f2f2f2;
}

.bbm-tr:hover {
    background-color: #fc8faf;
}

.bbm-td {
    padding: 10px 10px !important;
    border-bottom: 1px solid #ddd;
}

.bbm-td,
.bbm-th {
    padding-top: 8px;
    padding-bottom: 8px;
}

.bbm-table thead tr:first-child th:first-child {
    border-top-left-radius: 12px;
}
.bbm-table thead tr:first-child th:last-child {
    border-top-right-radius: 12px;
}

/* =============================== */
/* Buttons                        */
.bbm-button {
    background-color: #ff195d;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #ff195d;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
}

.bbm-button:hover {
    background-color: #ff195d;
    transform: scale(1.10);
    text-decoration: none;
}

.bbm-edit {
    background-color: #272240;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #272240;
    transition: background-color 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
}

.bbm-edit:hover {
    background-color: #272240;
    transform: scale(1.10);
}

.bbm-delete {
    background-color: #ff195d;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #ff195d;
    transition: background-color 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
}

.bbm-delete:hover {
    background-color: #ff195d;
    transform: scale(1.10);
}

.bbm-actions {
    display: flex;
    gap: 8px;
}

/* =============================== */
/* Formuliervelden                */
.bbm-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    align-items: flex-start;
}

.bbm-field {
    flex: 1;
    min-width: 50px;

}

.bbm-field-2 {
    flex: 1;
    min-width: 50px;
    height: 500px;
}

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

.bbm-input,
.bbm-input-2 {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.bbm-input-2 {
    height: 45px;
}

.nv-page-title {
    border-left-width: 16px !important;
    border-left-color: #ff195d !important;
    border: 0 solid #333;
    padding-left: 17px !important;
}

h1::after {

}


.bbm-input {
    min-height: 45px; /* Zorgt voor gelijke hoogte */
}
