/**
 * 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 #bce8f1;
    margin-bottom: 20px;
}

.panel-body {
    padding: 15px;
}

/* Modal Styles */
.modal-content-auto-height {
    height: auto;
    max-height: 700px;
}

.modal-iframe {
    width: 100%;
    height: 600px;
}

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

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

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

/* List Styles */
.list-no-style {
    list-style-type: none;
}

/* Error List - Normal font weight */
.alert-danger .list-unstyled {
    font-weight: normal;
}

/* Text Styles */
.text-no-decoration {
    text-decoration: inherit;
}

.text-break-all {
    word-break: break-all;
}

/* Spacing Utilities */
.margin-top-10 {
    margin-top: 10px;
}

.margin-top-0 {
    margin-top: 0;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

/* Button Styles */
.info-button-small {
    width: 15px;
    height: 15px;
    line-height: 1;
}

/* Layout Utilities */
.width-50 {
    width: 50%;
}

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

/* Page Header Styles */
.page-header-title {
    font-size: 30px;
}

footer {
    background-color: #f5f5f5
}

.visually-hidden {
    user-select: none;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}