/**
 * Common CSS classes for JSP pages
 * Replaces inline styles with reusable CSS classes
 * @since 2025.12.1
 */

.panel-info {
    border-radius: 4px;
    border: 1px solid #5b9db3;
    margin-bottom: 20px;
}

.panel-body {
    padding: 15px;
}

.remote-modal-close {
    border: 0;
    background-color: transparent;
    opacity: .2;
}

/* Modal Title Styles */
.modal-title-bold {
    font-weight: bold;
}

.modal-title-large-bold {
    font-size: 20px;
    font-weight: bold;
}

/* Modal Body Styles */
.modal-body-word-wrap {
    word-wrap: break-word;
}

#trouble-logging-modal .modal-title-bold {
    font-size: 20px;
}

/* Error List - Normal font weight */
.list-unstyled {
    font-weight: normal;
    margin-bottom: 0;
}

.text-counter-wrapper {
    margin-top: 5px;
}

/* Fullscreen Blocker - used by mobile auto-submit flow */
.fullscreen-blocker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FBBC05;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/*Login Page*/
.login-ack-text {
    font-size: 11px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#rightPaneFrame {
    width: 100%;
    height: 600px;
}

#leftPaneFrame {
    width: 98%;
    height: 900px;
}

/*Beta environment info (shown in place of left advertisement when application.mode.beta=true)*/
.beta-app-info {
    width: 98%;
    border: 0;
    border-radius: 4px;
    overflow: hidden;
}

.beta-app-info-head {
    background-color: #a23b3b;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    padding: 16px;
    border: 0;
}

.beta-app-info-body {
    background-color: #c15c5c;
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding: 24px 16px;
}

.beta-app-info-body p {
    margin-bottom: 18px;
}

.login-page-links {
    font-size: 12px;
}