/* Algemene stijlen */
em {
    font-weight: bold;
  }

#site-logo {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 204px;
    height: 61px;
    background-image: url('img/rbo_logo.png');
    background-size: contain;
    background-repeat: no-repeat;    
}

#lineHeader {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: #7e4192; 
    margin: 20px 0;
}

#content {
    color: rgb(116, 130, 155);
    direction: ltr;
    display: block;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 34px;
    position: absolute;
    top: 105px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
}

#content #error {
    color: red;
}

#content input,
#content select,
#content textarea {
    color: rgb(20, 23, 28);
    direction: ltr;
    display: block;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: normal;
}

#content input,
#content select {
    line-height: 34px; 
    height: 30px;
}

#content select {
    box-sizing: border-box;
}

#content textarea {
    resize: none;
}

#content table {
    width: 700px;
}

.full-width {
    width: 100%;
    box-sizing: border-box;
}

#content button,
#content input[type="submit"] {
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: white;
    width: 110px;
    height: 30px;
    background-color: rgb(255, 86, 0);
    border: none;
    cursor: pointer;
}

#content button:hover,
#content input[type="submit"]:hover {
    background-color: rgb(0, 156, 201);
}

table tr.hidden-control {
    display: none !important;
}

.hidden-control {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Bestand upload specifieke stijlen */
.bestanden-container {
    margin: 15px 0;
}

.bestanden-lijst {
    min-height: 50px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
}

.bestand-item {
    display: flex;
    align-items: center;
    padding: 5px;
    margin-bottom: 5px;
    background: #f9f9f9;
    border-radius: 3px;
}

.verwijder-knop {
    margin-left: 10px;
    color: #ff4444;
    cursor: pointer;
}

.upload-box {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    margin: 10px 0;
    border-radius: 5px;
}

.upload-label {
    display: inline-block;
    cursor: pointer;
    padding: 10px 15px;
    background: #f0f0f0;
    border-radius: 4px;
    transition: background 0.3s;
}

.upload-label:hover {
    background: #e0e0e0;
}

.upload-icon {
    font-size: 20px;
    margin-right: 8px;
}

.hint {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.bestanden-lijst {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
}

.bestand-item {
    display: flex;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.bestand-item:last-child {
    border-bottom: none;
}

.bestand-icoon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.bestand-naam {
    flex-grow: 1;
    font-size: 14px;
}

.bestand-grootte {
    color: #666;
    font-size: 12px;
    margin-left: 10px;
}

.verwijder-knop {
    color: #ff4444;
    cursor: pointer;
    margin-left: 10px;
    font-weight: bold;
}

.geen-bestanden {
    color: #999;
    text-align: center;
    padding: 10px;
}
