textarea::placeholder {
    font-size: 16px;
}

#phoneError {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    color: red;
    background-color: #fef0f0;
    border-radius: 5px;
}

#successPrompt {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    color: green;
    background-color: #dbf1e1;
    border-radius: 5px;
}

#warningPrompt {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    color: yellow;
    background-color: #fdf6ec;
    border-radius: 5px;
}

.radioCheck {
    margin-top: -2px !important;
}

.fileBox {
    /* display: none; */
    margin-top: -10px;
    margin-left: 200px;
}

.fileNames{
    word-break: break-word;
}

.closeName {
    color: red;
    cursor: pointer;
    margin-left: 5px;
}

@media screen and (max-width: 1028px) {
    .fileBox {
        margin-left: 0;
        margin-bottom: 20px;
        line-height: 1.5;
    }
}