@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
@import url('./icons.css');

html, body {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

.button-link {
    text-decoration: unset;
}

.title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
}

.title.title-secondary {
    padding: 0.313rem 0 0;
    color: var(--bs-secondary-color);
}

.title-header-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 2.5rem;
}

.title-content-text {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.375rem;
}

.main-content {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

/* Page content bottom padding */
.page-content-container {
    padding-bottom: 2rem;
}

/* Shimmer skeleton loading */
.shimmer-line {
    height: 14px;
    border-radius: 4px;
    background: #e9ecef;
    background-image: linear-gradient(90deg, #e9ecef 0%, #f8f9fa 40%, #e9ecef 80%);
    background-size: 600px 100%;
    animation: shimmer 1.4s ease-in-out infinite;
}

.shimmer-line-lg {
    height: 24px;
}

.shimmer-line-xl {
    height: 36px;
}

.shimmer-block {
    border-radius: 6px;
    background: #e9ecef;
    background-image: linear-gradient(90deg, #e9ecef 0%, #f8f9fa 40%, #e9ecef 80%);
    background-size: 600px 100%;
    animation: shimmer 1.4s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -600px 0; }
    100% { background-position: 600px 0; }
}
