/* verify.css - minimal styling to match screenshot */

body {
    background: #dee2e6;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.site-title {
    font-weight: 700;
    letter-spacing: 0.6px;
    margin: 0;
    color:maroon;
}

.verify-card {
    width: 420px;
    background: #fff;
    padding: 22px;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    margin-top: 30px;
}

    .verify-card .card-title {
        margin: 0 0 18px 0;
        font-weight: 700;
        font-size: 18px;
    }

.captcha-img {
    width: 140px;
    height: 48px;
    border: 1px solid #e6e6e6;
    display: block;
}

.btn-danger {
    background-color: #8a0f13;
    border-color: #8a0f13;
}

    .btn-danger:hover {
        background-color: #6f0b0f;
        border-color: #6f0b0f;
    }

@media (max-width: 480px) {
    .verify-card {
        width: 100%;
        margin: 18px;
        padding: 16px;
    }
}

/* Modal responsive fixes for mobile */
.modal-body {
    overflow-x: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.modal-body table {
    width: 100%;
    table-layout: auto;
}

.modal-body td,
.modal-body th {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .modal-body {
        padding: 15px;
        overflow-x: hidden;
    }
    
    .modal-body table {
        font-size: 14px;
    }
    
    .modal-body td,
    .modal-body th {
        padding: 8px 4px;
        font-size: 13px;
    }
    
    .modal-header .modal-title {
        font-size: 16px;
        word-wrap: break-word;
    }
}
