.docPopup {
    background-color:white;
    display: none;
    position: fixed;
    min-width: 17rem;
    left: 45%;
    top: 25%;
    z-index: 9;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    box-shadow: 5px 5px 7px black;
}

.docPopupHeader {
    display: flex;
    justify-content: space-between;
    color: white;
    background-color: var(--color-primary);
    font-size: 1.1rem;
    padding: 2px 1rem;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.docPopupMain {
    margin: 0.3rem 1.3rem;
    
}

.docPopupMain table {
    border-collapse: separate;
    border-spacing: 0 11px;
}

.docPopupMain input[type=text] {
    font-size: 1rem;
    border: none;
    border-bottom: 2px solid var(--color-border);
}

.docPopupMain input[type=text]:focus {
    outline: none;
    border-bottom: 2px solid var(--color-primary);
}

.docPopupMain input[type=text]:disabled{
    color: black;
}

.docPopupLine{
    margin-bottom: 9px;
    padding-left: 0.3rem;
}

.docPopupNav {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding: 1px 1rem;
}

.docPopupNavSpacer {
    display: inline-block;
    width: 3rem;
}

.docPopupButton {
    color: white;
    background-color: var(--color-primary);
    display: inline-block;
    border: none;
    text-align: center;
    text-decoration: none;
    padding: 5px 7px;
    font-size: 0.9rem;
    border-radius: 5px;
    cursor: pointer;
}

.docPopupButton:hover {
    color: black;
}

.docPopupError {
    color: var(--color-error);
    font-size: 0.8rem;
    text-align: left;
    padding-left: 1rem;
    margin-bottom: 5px;
}

.select-container {
    margin: 20px;
    font-family: Arial, sans-serif;
}

.select-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.custom-select {
    width: 200px;
    padding: 3px;
    border: none;
    border-bottom: 2px solid #ddd;
    background-color: white;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-select:hover {
    border-color: #007bff;
}

.custom-select:focus {
    outline: none;
    border-color: #007bff;
}

.custom-select option {
    padding: 0px;
    background-color: white;
    color: #333;
}

.custom-select option:hover {
    background-color: #007bff;
    color: white;
}


.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    background: white;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-input:checked + .checkbox-custom {
    background: #007bff;
    border-color: #007bff;
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '\2714';
    color: white;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-label:hover .checkbox-custom {
    border-color: #007bff;
}

.symbol {
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
}

.check::before {
    color: var(--color-secondary); 
    content: '\2714';
}

.close-button-minimal {
    position: absolute;
    top: 3px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.close-button-minimal:hover {
    border-color: #333;
    color: #333;
}

  


