.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    overflow: hidden;
}

.modal-content {
    border-radius: 10px;
}

.modal-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
}

.modal-header-row {
    background-color: #242424;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    height: 50px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.modal-body-row {
    background-color: #1c1c1e;
    color: #fff;
    height: auto;
}

.faq-header {
    text-align: left;
    padding-left: 20px;
}

.close-cell {
    text-align: right;
    padding-right: 20px;
}

.close {
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff5c5c;
}

.faq-body {
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}