/* ==================== */
/*   COMMON STYLES      */
/* ==================== */

/* Layout Wrapper */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 800px;
    width: 80%;
}

.content-wrapper {
    flex: 1;
    position: relative;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: auto;
    color: #fff;
    font-size: 14px;
}

.site-footer p {
    margin: 0 0 10px 0;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright {
    margin: 10px 0 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Utility classes (replace inline styles for CSP compliance) */
.text-danger-bold {
    font-weight: 600;
    color: #c53030;
}

.text-danger {
    color: #c53030;
}

.text-confirm-bold {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.error-page-content {
    text-align: center;
    margin-top: 2rem;
}

.error-page-btn {
    display: inline-block;
    width: auto;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-wrapper {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .page-wrapper {
        width: 95%;
    }

    .site-footer {
        padding: 20px 15px;
        font-size: 13px;
    }

    .site-footer a {
        margin: 0 10px;
    }
}
