.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.text-white {
    color: #fff;
}

.text-center {
    text-align: center;
}

.col-11 {
    width: 91.666667%;
}

.m-0 {
    margin: 0;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.footer-background {
    background-color: #1c1c33;
}

.footer-text-size {
    font-size: clamp(12px, 2vw, 16px);
}

.footer-link-text {
    font-size: inherit;
    cursor: pointer;
}

.footer-link-no-wrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-modal {
    border: none;
    padding: 0;
    border-radius: 6px;
    max-width: 500px;
    width: 90%;
    overflow: hidden;
}

.custom-modal::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

.custom-modal-header,
.custom-modal-body {
    padding: 1rem;
}

.custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
}

.custom-modal-title {
    margin: 0;
    font-size: 1.2rem;
}

.custom-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.custom-modal-footer {
    padding: 1rem;
    border-top: 1px solid #ccc;
    text-align: right;
    background-color: #fff;
}

.btn-primary {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    background-color: #0d6efd;
    border: 1px solid #0d6efd;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.modal-body-content {
    line-height: 1.6;
    font-size: 1rem;
    color: #333;
    text-align: justify;
    background-color: #fff;
}
