/*B"H*/
 /* --- Report Error Sign In Modal --- */
 .report-error-signin-modal-overlay {
    position: fixed; /* Covers the whole screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex; /* Use flex to center the modal content */
    justify-content: center;
    align-items: center;
    z-index: 10001; /* Ensure it's on top of other content */
    /* By default, it's visible in this UI-only demo. In a real app, JS would hide/show this. */
}

/* 
   In a real application, you would likely have a class like this 
   to control visibility with JavaScript:
.report-error-signin-modal-overlay.hidden {
    display: none;
}
*/

.report-error-signin-modal-content {
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    width: 90%; /* Responsive width */
    margin: 10px;
    max-width: 350px; /* Maximum width of the modal */
    text-align: center;
    position: relative; /* Needed for absolute positioning of the close button */
    color: #333;
}

.report-error-signin-modal-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4em;
    color: #333;
}

.report-error-signin-modal-content p {
    margin-bottom: 25px;
    font-size: 0.95em;
    color: #555;
    line-height: 1.5;
}

.report-error-signin-modal-google-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid #dadce0; /* Google's button border color */
    border-radius: 4px;
    background-color: #fff;
    color: #3c4043; /* Google's button text color */
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15); /* Google's button shadow */
    text-decoration: none; /* In case it's an <a> tag sometimes */
}
.report-error-signin-modal-google-button:hover {
    background-color: #f8f9fa; /* Google's button hover background */
    border-color: #c6c9cc;
}
.report-error-signin-modal-google-button:active {
     background-color: #f1f3f4; /* Google's button active background */
}

.report-error-signin-modal-google-button svg {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.report-error-signin-modal-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px; /* Makes the '×' character larger */
    color: #888;
    cursor: pointer;
    padding: 5px; /* Clickable area */
    line-height: 1; /* Ensures '×' is vertically centered if font-size changes it */
}
.report-error-signin-modal-close-button:hover {
    color: #333;
}