.swal2-popup {
    font-family: helvetica, arial !important;
}

/* Buttons */
.coolButton {
    transition: .1s;
    cursor: pointer;
    line-height: 50px;
    font-size: 12pt;
    font-weight: 600;
    height: 50px;
    width: 100%;
    background: #2b338e;
    color: white;
    border: none;
    border-radius: 8px;
    margin-top: 10px;
}
.coolButton:hover {
    background: #1e246a;
}

/* Inputs */
.coolTextArea {
    outline: none;
    background: white;
    resize: none;
    border-radius: 8px;
    min-height: 2em;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    font-size: 12pt;
    font-family: helvetica,arial;
    border: 1px solid #3e3e3e;
    overflow-y: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    transition: border-color 0.3s ease;
}
.coolInput {
    outline: none;
    background: white;
    resize: none;
    border-radius: 8px;
    min-height: 2em;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    font-size: 12pt;
    font-family: helvetica,arial;
    border: 1px solid #E0E0E0;
    overflow-y: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    transition: border-color 0.3s ease;
}

/* Final link rules (merged & deduped) */
a {
    color: #0073C7;
    text-decoration: none;
}
a:link {
    color: #eb4034;
    text-decoration: none;
}
a:visited {
    color: #eb4034;
    text-decoration: none;
}
a:hover {
    color: #d32f23;
    text-decoration: underline;
}
a:active {
    color: #eb4034;
    text-decoration: none;
}
a:focus {
    color: #eb4034;
    outline: none;
    text-decoration: none;
}

/* Base */
body {
    margin: 0;
    padding: 0;
    font-family: helvetica, arial, sans-serif;
    background: #fafafa;

    /* account for fixed navbar */
    padding-top: calc(60px + env(safe-area-inset-top));
}

/* Navbar */
.navbar {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);

    padding-top: calc(15px + env(safe-area-inset-top));
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1.8em;
    font-weight: bold;
}

.user-info {
    color: #555;
    font-size: 0.95em;
}

/* Page container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Page header */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}
.page-title {
    font-size: 16pt;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3px;
}
.page-subtitle {
    font-size: 1em;
    color: #555;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.card-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 18px 14px rgb(0 0 0 / 9%), 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid #CCC;
    transition: box-shadow 0.3s ease;
    padding: 35px;
    box-sizing: border-box;
}
.centered-card {
    max-width: 440px;
    margin: 0 auto;
}

/* Section titles */
.section-title {
    font-size: 11pt;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}
.section-subtitle {
    color: #666;
    font-size: 0.95em;
}

/* Form input */
.form-input {
    outline: none;
    font-size: 12pt;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #3e3e3e;
    border-radius: 8px;
    height: 50px;
    line-height: 50px;
    width: 100%;
    margin-top: 20px;
    transition: border-color 0.3s ease;
}

/* Code input */
.code-input {
    font-weight: 600;
    font-size: 24pt;
    text-align: center;
    letter-spacing: 10px;
}

/* Link utility */
.text-link {
    color: #0073C7;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.text-link:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .card-box {
        padding: 25px;
    }
    .page-title {
        font-size: 16pt;
    }
}
