﻿/* Modal width & centering */
#caseStatusChangedModal .modal-dialog {
    max-width: 520px;
    margin: 10% auto;
}

/* Modal box */
#caseStatusChangedModal .modal-content {
    border-radius: 16px;
    border: none;
    padding: 25px 20px 15px;
}

/* Hide default header styling but keep content */
#caseStatusChangedModal .modal-header {
    border-bottom: none;
    text-align: center;
    padding-bottom: 0;
}

/* Hide close icon visually (optional) */
#caseStatusChangedModal .close {
    display: none;
}

/* Body alignment */
#caseStatusChangedModal .modal-body {
    text-align: center;
    padding-top: 0;
}

    /* Add icon using ::before (NO HTML change) */
    /* Confirmation success icon */
    #caseStatusChangedModal .modal-body::before {
        content: "\f00c"; /* fa-check */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        margin: 0 auto 16px;
        background: #00A8D1; /* circle color */
        color: #fff; /* tick color */
        border-radius: 50%;
        font-size: 22px;
    }


/* Main question */
#caseStatusChangedModal #firstQuery {
    color: #212121;
    text-align: center;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    color: #333;
    margin-bottom: 4px;
}

/* Name text */
#caseStatusChangedModal #secondQuery {
    color: #212121;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 34px;
    margin-bottom: 4px;
}

/* Footer buttons */
#caseStatusChangedModal .modal-footer {
    border-top: none;
    text-align: center;
    padding-top: 10px;
}

/* Buttons */
#caseStatusChangedModal .tabBttn {
    min-width: 100px;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 500;
    margin: 0 6px;
}

/* No button */
#cancelStatusModal {
    border-radius: 8px;
    border: none;
    background: rgba(33, 33, 33, 0.10);
    color: #212121;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    
}

.cmtstpp {
    font-size: 16px;
    font-style: normal;
    font-weight: 500 !important;
    line-height: 34px;
    color: #333;
}
/* Yes button */
#btnQuery {
    border-radius: 10px;
    background: #00A8D1;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    border: none;
}
