.help-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 5px;
    border-radius: 50%;
    background-color: #999;
    color: white;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    cursor: help;
    position: relative;
}

.tooltip {
    display: none;
    position: fixed;
    background-color: #333;
    color: #fff;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 1000;
    width: max-content;
    max-width: 300px;
    white-space: normal;
    word-wrap: break-word;
    pointer-events: none;
}

.help-icon:hover .tooltip {
    display: block;
}

.tooltip p {
    margin: 4px 0;
}

.tooltip ul {
    padding-left: 18px;
    margin: 4px 0;
}

.custom-form-input input {
    width: 100%;
    box-sizing: border-box;
}

.custom-form-input select {
    width: 100%;
    box-sizing: border-box;
}
.custom-form-input textarea {
    width: 100%;
    box-sizing: border-box;
}

.errorlist, .error-message {
    color: #ff4136;
    font-weight: bold;
}

.add-file-btn {
    background-color: #28a745;
    color: white;
    border: 1px solid #28a745;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.add-file-btn:hover {
    background-color: #218838;
}

.delete-file-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
    font-size: 14px;
    transition: background-color 0.2s;
}

.delete-file-btn:hover {
    background-color: #c82333;
}


.file-form-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: space-between;
}

.login #container {
    width: 40em;
    max-width: 90%;
    min-width: 350px;
    margin: 100px auto;
}
