/* style-cards.css */

/* Base Reset & Centering Container */
body {
    margin: 0;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8fafc;
    color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Responsive Flash Card styling */
.flash-card {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 550px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

hr {
    width: 100%;
    border: none;
    border-top: 1px solid #000000; /* Matches card border color */
    margin: 20px auto;            /* Centers the divider and adds vertical spacing */
}

/* Typography */
h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Body Paragraphs */
.content-body p {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    text-align: justify;
    margin-bottom: 20px;
}

/* Smaller, Centered Button styling with dynamic variables */
.btn-ok {
    display: inline-block;
    background-color: var(--btn-bg, #0000CD);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 8px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin-top: 15px;
    text-decoration: none;
}

.btn-ok:hover {
    background-color: var(--btn-hover-bg, #dc2626);
}

.btn-ok:active {
    transform: scale(0.98);
}

/* Responsiveness adjustments */
@media (max-width: 480px) {
    .flash-card {
        padding: 24px;
    }
    h1 {
        font-size: 1.8rem;
    }
    .content-body p {
        font-size: 0.9rem;
    }
}