.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 710px;
    width: 80%;
    height: fit-content;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    overflow: hidden;
}

.modal-header {
    padding: 15px 20px;
    background-color: #ff6b34;
    border-bottom: 1px solid #dee2e6;
}

.modal-header h3 {
    margin: 0 auto;
    font-weight: bold;
    font-size: 24px;
    color: #ffffff;
}

.modal-body {
    padding: 20px;
    display: flex;
    gap: 20px;
}

.modal-body-title {
    padding-top: 10px;
    color: #131313;
}

.modal-body textarea {
    flex: 1;
    width: 100%;
    height: 150px;
    padding: 10px;
    resize: vertical;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 16px;
    color: #131313;
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid #dbdbdb;
    outline: none;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #fff;
    flex-wrap: nowrap;
    border-top: none;
    gap: 20px;
}

.modal-footer button {
    padding: 12px 16px;
    margin-left: 8px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    outline: none;
}

.btn-cancel {
    background: #fff;
    color: #030301;
    border: 1px solid #030301;
}

.btn-confirm {
    color: #fff;
    border: 1px solid #ff6b34;
    background-color: #ff6b34;
}
