
:root {
    --skls-navy: #0f172a;
    --skls-blue: #1d4ed8;
    --skls-blue-2: #2563eb;
    --skls-muted: #64748b;
    --skls-border: #e5e7eb;
    --skls-orcid: #a6ce39;
    --skls-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.20), transparent 28%),
        radial-gradient(circle at 88% 15%, rgba(166, 206, 57, 0.16), transparent 28%),
        linear-gradient(135deg, #eef2ff 0%, #f8fafc 55%, #eef2ff 100%);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.auth-brand {
    position: relative;
    padding: 56px;
    background:
        radial-gradient(circle at 20% 25%, rgba(37,99,235,0.30), transparent 34%),
        linear-gradient(145deg, #020617, #0f172a 55%, #1e293b);
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth-brand::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.65;
}

.brand-content,
.brand-footer {
    position: relative;
    z-index: 2;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 76px;
}

.brand-logo img {
    height: 58px;
    width: auto;
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    padding: 8px;
}

.brand-logo strong {
    font-size: 20px;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.brand-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    color: #dbeafe;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 18px;
}

.brand-kicker span {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
}

.auth-brand h1 {
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.06em;
    margin-bottom: 18px;
}

.auth-brand p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.8;
    max-width: 620px;
}

.brand-footer {
    color: #94a3b8;
    font-size: 13px;
}

.auth-form-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 24px;
}

.login-card {
    width: 100%;
    max-width: 460px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 28px;
    padding: 42px;
    box-shadow: var(--skls-shadow);
    backdrop-filter: blur(16px);
}

.mobile-logo {
    display: none;
    justify-content: center;
    margin-bottom: 22px;
}

.mobile-logo img {
    height: 68px;
    width: auto;
}

.login-title {
    text-align: center;
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -0.045em;
    color: var(--skls-navy);
    margin-bottom: 8px;
}

.login-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--skls-muted);
    margin-bottom: 28px;
    line-height: 1.65;
}

.orcid-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--skls-orcid);
    color: #fff;
    border-radius: 14px;
    padding: 13px 16px;
    text-decoration: none;
    font-weight: 950;
    margin-bottom: 18px;
    transition: 0.18s ease;
}

.orcid-auth-btn:hover {
    background: #8fb82f;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(166, 206, 57, 0.28);
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.divider div {
    height: 1px;
    background: var(--skls-border);
    flex: 1;
}

.divider span {
    color: var(--skls-muted);
    font-size: 13px;
    font-weight: 850;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    color: #334155;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 7px;
}

.input-field {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 13px;
    padding: 12px 14px;
    font-size: 14px;
    color: #0f172a;
    background: #fff;
    transition: 0.18s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--skls-blue-2);
    box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 13px;
    color: var(--skls-muted);
    font-weight: 900;
    user-select: none;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    margin-top: 8px;
    color: #334155;
}

.login-options a {
    color: var(--skls-blue);
    text-decoration: none;
    font-weight: 900;
}

.login-btn {
    width: 100%;
    margin-top: 24px;
    padding: 13px;
    border: none;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 950;
    color: #fff;
    background: var(--skls-blue);
    cursor: pointer;
    transition: 0.18s ease;
}

.login-btn:hover {
    background: #1e40af;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(37,99,235,.24);
}

.login-footer {
    text-align: center;
    margin-top: 22px;
    font-size: 14px;
    color: var(--skls-muted);
}

.login-footer a {
    color: var(--skls-blue);
    text-decoration: none;
    font-weight: 900;
}

.status-box {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    padding: 14px;
    border-radius: 13px;
    margin-bottom: 18px;
    font-weight: 800;
}

@media (max-width: 980px) {
    .auth-shell {
        grid-template-columns: 1fr;
    }

    .auth-brand {
        display: none;
    }

    .mobile-logo {
        display: flex;
    }

    .auth-form-area {
        min-height: 100vh;
    }
}

@media (max-width: 560px) {
    .login-card {
        padding: 28px;
        border-radius: 22px;
    }

    .login-options {
        flex-direction: column;
        align-items: flex-start;
    }
}



body{
background: linear-gradient(135deg,#eef2ff,#f8fafc);
min-height:100vh;
}

/* Layout */

.confirm-container{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:30px;
}

/* Card */

.confirm-card{
width:100%;
max-width:420px;
padding:40px;
border-radius:18px;
background:rgba(255,255,255,0.95);
backdrop-filter:blur(10px);
box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

/* Logo */

.logo{
display:flex;
justify-content:center;
align-items:center;
margin-bottom:25px;
}

.logo img{
height:70px;
width:auto;
display:block;
}

/* Title */

.title{
text-align:center;
font-size:24px;
font-weight:700;
color:#111827;
}

.subtitle{
text-align:center;
font-size:14px;
color:#6b7280;
margin-bottom:25px;
}

/* Input */

.input-field{
width:100%;
border:1px solid #e5e7eb;
border-radius:10px;
padding:11px 14px;
font-size:14px;
margin-top:6px;
}

.input-field:focus{
outline:none;
border-color:#4f46e5;
box-shadow:0 0 0 3px rgba(79,70,229,.12);
}

/* Button */

.btn-confirm{
width:100%;
margin-top:20px;
padding:12px;
border:none;
border-radius:10px;
font-size:15px;
font-weight:600;
color:#fff;
background:linear-gradient(135deg,#4f46e5,#6366f1);
cursor:pointer;
}

.btn-confirm:hover{
box-shadow:0 10px 20px rgba(79,70,229,.25);
}



body{
background: linear-gradient(135deg,#eef2ff,#f8fafc);
min-height:100vh;
}

/* Layout */

.forgot-container{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:30px;
}

/* Card */

.forgot-card{
width:100%;
max-width:420px;
padding:40px;
border-radius:18px;
background:rgba(255,255,255,0.95);
backdrop-filter:blur(10px);
box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

/* Logo */

.logo{
display:flex;
justify-content:center;
align-items:center;
margin-bottom:25px;

}

.logo img{
height:70px;
width:auto;
display:block;
}

/* Title */

.title{
text-align:center;
font-size:24px;
font-weight:700;
color:#111827;
}

.subtitle{
text-align:center;
font-size:14px;
color:#6b7280;
margin-bottom:25px;
}

/* Input */

.input-field{
width:100%;
border:1px solid #e5e7eb;
border-radius:10px;
padding:11px 14px;
font-size:14px;
margin-top:6px;
}

.input-field:focus{
outline:none;
border-color:#4f46e5;
box-shadow:0 0 0 3px rgba(79,70,229,.12);
}

/* Button */

.btn-reset{
width:100%;
margin-top:20px;
padding:12px;
border:none;
border-radius:10px;
font-size:15px;
font-weight:600;
color:#fff;
background:linear-gradient(135deg,#4f46e5,#6366f1);
cursor:pointer;
}

.btn-reset:hover{
box-shadow:0 10px 20px rgba(79,70,229,.25);
}

/* Footer */

.footer{
text-align:center;
margin-top:18px;
font-size:14px;
}

.footer a{
color:#4f46e5;
text-decoration:none;
}

.footer a:hover{
text-decoration:underline;
}


:root {
    --auth-navy: #0f172a;
    --auth-blue: #1d4ed8;
    --auth-muted: #64748b;
    --auth-border: #e5e7eb;
    --auth-orcid: #a6ce39;
    --auth-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

body {
    background:
        radial-gradient(circle at 15% 15%, rgba(166,206,57,0.20), transparent 30%),
        linear-gradient(135deg, #eef2ff, #f8fafc);
    min-height: 100vh;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.orcid-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 20px;
}

.orcid-card {
    width: 100%;
    max-width: 860px;
    padding: 42px;
    border-radius: 24px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    box-shadow: var(--auth-shadow);
    border: 1px solid rgba(255,255,255,0.65);
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
}

.logo img {
    height: 72px;
    width: auto;
    display: block;
}

.title {
    text-align: center;
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -0.04em;
    color: var(--auth-navy);
    margin-bottom: 6px;
}

.subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--auth-muted);
    margin-bottom: 26px;
}

.orcid-confirmed {
    background: #f7fee7;
    border: 1px solid #d9f99d;
    color: #365314;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
    font-weight: 800;
}

.section-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--auth-navy);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    color: #334155;
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 7px;
}

.input-field {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    background: #fff;
}

.input-field:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}

.input-note {
    font-size: 12px;
    color: var(--auth-muted);
    margin-top: 6px;
    line-height: 1.6;
}

.submit-btn {
    width: 100%;
    border: none;
    border-radius: 12px;
    background: var(--auth-blue);
    color: #fff;
    font-weight: 900;
    padding: 13px 20px;
    margin-top: 24px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #1e40af;
}

.error-list {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 22px;
}

@media (max-width: 720px) {
    .orcid-card {
        padding: 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --skls-navy: #0f172a;
    --skls-navy-2: #1e293b;
    --skls-blue: #1d4ed8;
    --skls-blue-2: #2563eb;
    --skls-muted: #64748b;
    --skls-border: #e5e7eb;
    --skls-soft: #f8fafc;
    --skls-orcid: #a6ce39;
    --skls-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.20), transparent 28%),
        radial-gradient(circle at 88% 15%, rgba(166, 206, 57, 0.16), transparent 28%),
        linear-gradient(135deg, #eef2ff 0%, #f8fafc 55%, #eef2ff 100%);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}

.auth-brand {
    position: relative;
    padding: 56px;
    background:
        radial-gradient(circle at 20% 25%, rgba(37,99,235,0.30), transparent 34%),
        linear-gradient(145deg, #020617, #0f172a 55%, #1e293b);
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth-brand::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.65;
}

.brand-content {
    position: relative;
    z-index: 2;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 70px;
}

.brand-logo img {
    height: 58px;
    width: auto;
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    padding: 8px;
}

.brand-logo strong {
    font-size: 20px;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.brand-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    color: #dbeafe;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 18px;
}

.brand-kicker span {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
}

.auth-brand h1 {
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.06em;
    margin-bottom: 18px;
}

.auth-brand p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.8;
    max-width: 620px;
}

.brand-points {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
    margin-top: 40px;
}

.brand-point {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    padding: 16px;
    backdrop-filter: blur(12px);
}

.brand-point strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 900;
}

.brand-point span {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
}

.auth-form-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 24px;
}

.auth-card {
    width: 100%;
    max-width: 820px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 28px;
    padding: 38px;
    box-shadow: var(--skls-shadow);
    backdrop-filter: blur(16px);
}

.mobile-logo {
    display: none;
    justify-content: center;
    margin-bottom: 22px;
}

.mobile-logo img {
    height: 68px;
    width: auto;
}

.auth-title {
    text-align: center;
    font-size: 30px;
    font-weight: 950;
    color: var(--skls-navy);
    letter-spacing: -0.045em;
    margin-bottom: 6px;
}

.auth-subtitle {
    text-align: center;
    color: var(--skls-muted);
    margin-bottom: 26px;
    line-height: 1.6;
}

.orcid-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--skls-orcid);
    color: #fff;
    border-radius: 14px;
    padding: 13px 16px;
    text-decoration: none;
    font-weight: 950;
    margin-bottom: 18px;
    transition: 0.18s ease;
}

.orcid-auth-btn:hover {
    background: #8fb82f;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(166, 206, 57, 0.28);
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.divider div {
    height: 1px;
    background: var(--skls-border);
    flex: 1;
}

.divider span {
    color: var(--skls-muted);
    font-size: 13px;
    font-weight: 850;
}

.progressbar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.progress-step {
    text-align: center;
    font-size: 13px;
    padding: 10px 8px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
    font-weight: 900;
}

.progress-step.active {
    background: var(--skls-blue);
    color: #fff;
    border-color: var(--skls-blue);
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.section-title {
    font-size: 18px;
    font-weight: 950;
    color: var(--skls-navy);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    color: #334155;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 7px;
}

.input-field {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 13px;
    padding: 12px 14px;
    font-size: 14px;
    background: #fff;
    color: #0f172a;
    transition: 0.18s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--skls-blue-2);
    box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}

.input-note {
    font-size: 12px;
    color: var(--skls-muted);
    margin-top: 6px;
    line-height: 1.6;
}

.orcid-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
}

.orcid-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 950;
    color: #365314;
    margin-bottom: 8px;
}

.orcid-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--skls-orcid);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 950;
}

.buttons {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}

.btn {
    padding: 12px 20px;
    border-radius: 13px;
    border: none;
    cursor: pointer;
    font-weight: 900;
    transition: 0.18s ease;
}

.btn-next {
    background: var(--skls-blue);
    color: #fff;
}

.btn-next:hover {
    background: #1e40af;
    transform: translateY(-1px);
}

.btn-prev {
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.footer {
    text-align: center;
    margin-top: 22px;
    font-size: 14px;
    color: var(--skls-muted);
}

.footer a {
    color: var(--skls-blue);
    text-decoration: none;
    font-weight: 900;
}

.error-list {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 22px;
}

.error-list ul {
    margin-bottom: 0;
}

@media (max-width: 1050px) {
    .auth-shell {
        grid-template-columns: 1fr;
    }

    .auth-brand {
        display: none;
    }

    .mobile-logo {
        display: flex;
    }

    .auth-form-area {
        min-height: 100vh;
    }
}

@media (max-width: 720px) {
    .auth-card {
        padding: 26px;
        border-radius: 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .progressbar {
        grid-template-columns: 1fr;
    }

    .buttons {
        flex-direction: column;
    }
}


body{
background: linear-gradient(135deg,#eef2ff,#f8fafc);
min-height:100vh;
}

/* Layout */

.reset-container{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:30px;
}

/* Card */

.reset-card{
width:100%;
max-width:420px;
padding:40px;
border-radius:18px;
background:rgba(255,255,255,0.95);
backdrop-filter:blur(10px);
box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

/* Logo */

.logo{
display:flex;
justify-content:center;
align-items:center;
margin-bottom:25px;

}

.logo img{
height:70px;
width:auto;
display:block;
}
/* Title */

.title{
text-align:center;
font-size:24px;
font-weight:700;
color:#111827;
}

.subtitle{
text-align:center;
font-size:14px;
color:#6b7280;
margin-bottom:25px;
}

/* Input */

.input-field{
width:100%;
border:1px solid #e5e7eb;
border-radius:10px;
padding:11px 14px;
font-size:14px;
margin-top:6px;
}

.input-field:focus{
outline:none;
border-color:#4f46e5;
box-shadow:0 0 0 3px rgba(79,70,229,.12);
}

/* Button */

.btn-reset{
width:100%;
margin-top:20px;
padding:12px;
border:none;
border-radius:10px;
font-size:15px;
font-weight:600;
color:#fff;
background:linear-gradient(135deg,#4f46e5,#6366f1);
cursor:pointer;
}

.btn-reset:hover{
box-shadow:0 10px 20px rgba(79,70,229,.25);
}



body{
background: linear-gradient(135deg,#eef2ff,#f8fafc);
min-height:100vh;
}

/* Layout */

.verify-container{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:30px;
}

/* Card */

.verify-card{
width:100%;
max-width:460px;
padding:40px;
border-radius:18px;
background:rgba(255,255,255,0.95);
backdrop-filter:blur(10px);
box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

/* Logo */

.logo{
display:flex;
justify-content:center;
align-items:center;
margin-bottom:25px;
}

.logo img{
height:70px;
width:auto;
display:block;
}


/* Title */

.title{
text-align:center;
font-size:24px;
font-weight:700;
color:#111827;
}

.subtitle{
text-align:center;
font-size:14px;
color:#6b7280;
margin-bottom:25px;
line-height:1.6;
}

/* Success message */

.success{
background:#ecfdf5;
border:1px solid #a7f3d0;
color:#065f46;
padding:10px 14px;
border-radius:8px;
font-size:13px;
margin-bottom:15px;
}

/* Buttons */

.actions{
display:flex;
justify-content:space-between;
align-items:center;
margin-top:20px;
}

.btn-primary{
padding:11px 18px;
border:none;
border-radius:10px;
background:linear-gradient(135deg,#4f46e5,#6366f1);
color:white;
font-weight:600;
cursor:pointer;
}

.btn-primary:hover{
box-shadow:0 10px 20px rgba(79,70,229,.25);
}

.btn-logout{
font-size:14px;
color:#6b7280;
text-decoration:none;
border:none;
background:none;
cursor:pointer;
}

.btn-logout:hover{
color:#111827;
text-decoration:underline;
}


:root {
    --cat-navy: #0f172a;
    --cat-blue: #1d4ed8;
    --cat-muted: #64748b;
    --cat-soft: #f8fafc;
    --cat-border: #e5e7eb;
    --cat-radius: 18px;
    --cat-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

body {
    background: #f8fafc;
}

.cat-page {
    max-width: 1180px;
    margin: 120px auto 70px;
    padding: 0 18px;
}

.cat-hero {
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.22), transparent 34%),
        linear-gradient(135deg, #020617, #0f172a 55%, #1e293b);
    border-radius: 30px;
    padding: 46px;
    color: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
    margin-bottom: 34px;
    position: relative;
    overflow: hidden;
}

.cat-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: 0.55;
}

.cat-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.cat-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    color: #dbeafe;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 18px;
}

.cat-kicker span {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
}

.cat-hero h1 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.055em;
    margin-bottom: 14px;
}

.cat-hero p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 0;
}

.cat-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 26px;
}

.cat-toolbar h2 {
    color: var(--cat-navy);
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -0.035em;
    margin: 0 0 6px;
}

.cat-toolbar p {
    color: var(--cat-muted);
    margin: 0;
}

.cat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 11px;
    padding: 11px 16px;
    font-weight: 850;
    font-size: 14px;
    transition: 0.2s ease;
}

.cat-btn-primary {
    background: var(--cat-blue);
    color: #fff;
}

.cat-btn-primary:hover {
    background: #1e40af;
    color: #fff;
    transform: translateY(-1px);
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.cat-card {
    background: #fff;
    border: 1px solid var(--cat-border);
    border-radius: var(--cat-radius);
    padding: 26px;
    box-shadow: var(--cat-shadow);
    transition: 0.2s ease;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.11);
}

.cat-card::before {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #eff6ff;
}

.cat-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: #eff6ff;
    color: var(--cat-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 950;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.cat-title {
    color: var(--cat-navy);
    font-size: 20px;
    font-weight: 950;
    text-decoration: none;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.cat-title:hover {
    color: var(--cat-blue);
}

.cat-description {
    color: #475569;
    line-height: 1.65;
    font-size: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.cat-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    position: relative;
    z-index: 2;
}

.cat-count {
    display: inline-flex;
    background: #f1f5f9;
    color: #475569;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
}

.cat-link {
    color: var(--cat-blue);
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
}

.cat-empty {
    background: #fff;
    border: 1px solid var(--cat-border);
    border-radius: 22px;
    padding: 52px 28px;
    text-align: center;
    box-shadow: var(--cat-shadow);
    color: var(--cat-muted);
}

@media (max-width: 980px) {
    .cat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .cat-page {
        margin-top: 105px;
    }

    .cat-grid {
        grid-template-columns: 1fr;
    }

    .cat-hero {
        padding: 30px;
        border-radius: 24px;
    }

    .cat-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

:root {
    --catshow-navy: #0f172a;
    --catshow-blue: #1d4ed8;
    --catshow-muted: #64748b;
    --catshow-border: #e5e7eb;
    --catshow-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    --catshow-radius: 18px;
}

body {
    background: #f8fafc;
}

.catshow-page {
    max-width: 1180px;
    margin: 120px auto 70px;
    padding: 0 18px;
}

.catshow-hero {
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.22), transparent 34%),
        linear-gradient(135deg, #020617, #0f172a 55%, #1e293b);
    border-radius: 30px;
    padding: 46px;
    color: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
    margin-bottom: 34px;
    position: relative;
    overflow: hidden;
}

.catshow-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: 0.55;
}

.catshow-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.catshow-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    color: #dbeafe;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 18px;
}

.catshow-kicker span {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
}

.catshow-hero h1 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.055em;
    margin-bottom: 14px;
}

.catshow-hero p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 0;
}

.catshow-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 26px;
    align-items: start;
}

.catshow-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 24px;
}

.catshow-toolbar h2 {
    color: var(--catshow-navy);
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.035em;
    margin: 0 0 6px;
}

.catshow-toolbar span {
    color: var(--catshow-muted);
    font-size: 14px;
}

.catshow-list {
    display: grid;
    gap: 18px;
}

.catshow-article {
    background: #fff;
    border: 1px solid var(--catshow-border);
    border-radius: var(--catshow-radius);
    padding: 24px;
    box-shadow: var(--catshow-shadow);
    transition: 0.2s ease;
}

.catshow-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.11);
}

.article-type {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--catshow-blue);
    font-size: 12px;
    font-weight: 850;
    margin-bottom: 12px;
}

.catshow-title {
    color: var(--catshow-navy);
    font-size: 21px;
    line-height: 1.35;
    font-weight: 950;
    letter-spacing: -0.025em;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.catshow-title:hover {
    color: var(--catshow-blue);
}

.catshow-meta {
    color: var(--catshow-muted);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.catshow-excerpt {
    color: #475569;
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 14px;
}

.catshow-read {
    color: var(--catshow-blue);
    text-decoration: none;
    font-weight: 900;
}

.catshow-sidebar {
    position: sticky;
    top: 110px;
}

.side-card {
    background: #fff;
    border: 1px solid var(--catshow-border);
    border-radius: var(--catshow-radius);
    padding: 22px;
    box-shadow: var(--catshow-shadow);
    margin-bottom: 20px;
}

.side-card h4 {
    color: var(--catshow-navy);
    font-weight: 950;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.side-card p {
    color: var(--catshow-muted);
    line-height: 1.7;
    font-size: 14px;
}

.catshow-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 11px;
    padding: 11px 16px;
    font-weight: 850;
    font-size: 14px;
    transition: 0.2s ease;
}

.catshow-btn-primary {
    background: var(--catshow-blue);
    color: #fff;
}

.catshow-btn-primary:hover {
    background: #1e40af;
    color: #fff;
    transform: translateY(-1px);
}

.catshow-btn-outline {
    background: #fff;
    color: var(--catshow-blue);
    border: 1px solid var(--catshow-border);
}

.catshow-btn-outline:hover {
    background: #eff6ff;
    color: var(--catshow-blue);
}

.catshow-empty {
    background: #fff;
    border: 1px solid var(--catshow-border);
    border-radius: 22px;
    padding: 52px 28px;
    text-align: center;
    box-shadow: var(--catshow-shadow);
    color: var(--catshow-muted);
}

.pagination-wrap {
    margin-top: 26px;
}

@media (max-width: 980px) {
    .catshow-layout {
        grid-template-columns: 1fr;
    }

    .catshow-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .catshow-page {
        margin-top: 105px;
    }

    .catshow-hero {
        padding: 30px;
        border-radius: 24px;
    }

    .catshow-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

:root {
    --profile-navy: #0f172a;
    --profile-navy-soft: #1e293b;
    --profile-blue: #1d4ed8;
    --profile-blue-soft: #eff6ff;
    --profile-muted: #64748b;
    --profile-border: #e5e7eb;
    --profile-bg: #f8fafc;
    --profile-card: #ffffff;
    --profile-success-bg: #ecfdf5;
    --profile-success-text: #047857;
    --profile-warning-bg: #fef3c7;
    --profile-warning-text: #92400e;
    --profile-orcid: #a6ce39;
    --profile-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    --profile-shadow-strong: 0 24px 70px rgba(15, 23, 42, 0.18);
}

body {
    background:
        radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.10), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(166, 206, 57, 0.10), transparent 28%),
        #f8fafc;
}

.profile-page {
    max-width: 1240px;
    margin: 120px auto 80px;
    padding: 0 20px;
}

.profile-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.30), transparent 35%),
        linear-gradient(135deg, #020617, #0f172a 55%, #1e293b);
    border-radius: 34px;
    padding: 46px;
    color: #fff;
    box-shadow: var(--profile-shadow-strong);
    margin-bottom: 28px;
}

.profile-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.55;
}

.profile-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.profile-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    color: #dbeafe;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 18px;
    backdrop-filter: blur(12px);
}

.profile-kicker span {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
}

.profile-hero h1 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.055em;
    margin-bottom: 10px;
}

.profile-hero p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.75;
    max-width: 780px;
    margin-bottom: 0;
}

.profile-identity {
    min-width: 260px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 22px;
    padding: 18px;
    backdrop-filter: blur(12px);
}

.profile-identity-name {
    font-weight: 950;
    font-size: 18px;
    margin-bottom: 4px;
}

.profile-identity-email {
    color: #cbd5e1;
    font-size: 14px;
    word-break: break-word;
}

.profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 26px;
    align-items: start;
}

.profile-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(226,232,240,0.95);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--profile-shadow);
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
}

.profile-card-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f1f5f9;
}

.profile-card h3 {
    color: var(--profile-navy);
    font-size: 22px;
    font-weight: 950;
    margin-bottom: 5px;
    letter-spacing: -0.035em;
}

.profile-card-subtitle {
    color: var(--profile-muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 0;
}

.section-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--profile-blue-soft);
    color: var(--profile-blue);
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.form-section-title {
    font-size: 15px;
    font-weight: 950;
    color: var(--profile-navy);
    margin: 22px 0 14px;
    padding-top: 6px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-group {
    margin-bottom: 2px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    color: #334155;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    background: #fff;
    color: #0f172a;
    transition: all 0.18s ease;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.field-note {
    display: block;
    color: var(--profile-muted);
    font-size: 12px;
    margin-top: 7px;
    line-height: 1.55;
}

.profile-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid #f1f5f9;
}

.btn-profile-primary,
.btn-profile-secondary,
.btn-profile-orcid {
    border-radius: 14px;
    padding: 12px 20px;
    font-weight: 950;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s ease;
}

.btn-profile-primary {
    background: var(--profile-blue);
    color: #fff;
}

.btn-profile-primary:hover {
    background: #1e40af;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

.btn-profile-secondary {
    background: #f8fafc;
    color: var(--profile-navy);
    border: 1px solid var(--profile-border);
}

.btn-profile-secondary:hover {
    background: #f1f5f9;
    color: var(--profile-navy);
}

.btn-profile-orcid {
    background: var(--profile-orcid);
    color: #fff;
}

.btn-profile-orcid:hover {
    background: #8fb82f;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(166, 206, 57, 0.24);
}

.profile-alert-success,
.profile-alert-error {
    padding: 15px 18px;
    border-radius: 16px;
    margin-bottom: 22px;
    font-weight: 850;
    border: 1px solid;
}

.profile-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}

.profile-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.side-card {
    background: #fff;
    border: 1px solid var(--profile-border);
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--profile-shadow);
    margin-bottom: 22px;
}

.side-card h4 {
    color: var(--profile-navy);
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}

.side-card p {
    color: var(--profile-muted);
    line-height: 1.7;
    font-size: 14px;
}

.orcid-status-box {
    background: #f8fafc;
    border: 1px solid var(--profile-border);
    border-radius: 18px;
    padding: 16px;
    margin: 16px 0;
}

.orcid-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    margin-top: 8px;
}

.orcid-verified {
    background: var(--profile-success-bg);
    color: var(--profile-success-text);
}

.orcid-unverified {
    background: var(--profile-warning-bg);
    color: var(--profile-warning-text);
}

.quick-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-list li {
    border-bottom: 1px solid #f1f5f9;
}

.quick-list li:last-child {
    border-bottom: none;
}

.quick-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--profile-navy);
    text-decoration: none;
    font-weight: 850;
    padding: 13px 0;
}

.quick-list a:hover {
    color: var(--profile-blue);
}

.quick-list span {
    color: #94a3b8;
    font-weight: 900;
}

.profile-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.profile-summary-row:last-child {
    border-bottom: none;
}

.profile-summary-label {
    color: var(--profile-muted);
    font-size: 13px;
    font-weight: 850;
}

.profile-summary-value {
    color: var(--profile-navy);
    font-weight: 900;
    text-align: right;
    word-break: break-word;
}

@media (max-width: 980px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }

    .profile-page {
        margin-top: 105px;
    }
}

@media (max-width: 720px) {
    .profile-hero {
        padding: 30px;
        border-radius: 26px;
    }

    .profile-card,
    .side-card {
        padding: 22px;
        border-radius: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .profile-card-header {
        flex-direction: column;
    }

    .profile-actions {
        flex-direction: column;
    }

    .btn-profile-primary,
    .btn-profile-secondary,
    .btn-profile-orcid {
        width: 100%;
    }
}

.invitation-page {
    max-width: 780px;
    margin: 130px auto 70px;
    padding: 0 20px;
}

.invitation-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.invitation-card h1 {
    font-size: 32px;
    font-weight: 950;
    color: #0f172a;
    margin-bottom: 10px;
}

.invitation-card p {
    color: #64748b;
    line-height: 1.75;
}

.manuscript-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    margin: 20px 0;
}

.btn-accept {
    background: #047857;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 900;
    cursor: pointer;
}

.btn-decline {
    background: #fff;
    color: #b91c1c;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
    margin-left: 8px;
}

.decline-page {
    max-width: 760px;
    margin: 130px auto 70px;
    padding: 0 20px;
}

.decline-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.decline-card h1 {
    font-size: 30px;
    font-weight: 950;
    color: #0f172a;
    margin-bottom: 10px;
}

.decline-card p {
    color: #64748b;
    line-height: 1.7;
}

.form-control {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 12px 14px;
    min-height: 130px;
}

.btn-danger {
    background: #b91c1c;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 900;
    margin-top: 16px;
    cursor: pointer;
}

:root {
    --dash-navy: #0f172a;
    --dash-blue: #1d4ed8;
    --dash-muted: #64748b;
    --dash-border: #e5e7eb;
    --dash-bg: #f8fafc;
    --dash-green: #047857;
    --dash-orange: #b45309;
    --dash-red: #b91c1c;
    --dash-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

body {
    background:
        radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.10), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(166, 206, 57, 0.10), transparent 28%),
        #f8fafc;
}

.dash-page {
    max-width: 1240px;
    margin: 120px auto 80px;
    padding: 0 20px;
}

.dash-hero {
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.28), transparent 36%),
        linear-gradient(135deg, #020617, #0f172a 55%, #1e293b);
    color: #fff;
    border-radius: 34px;
    padding: 44px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.20);
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.dash-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.55;
}

.dash-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.dash-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    color: #dbeafe;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 18px;
}

.dash-kicker span {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

.dash-hero h1 {
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 950;
    letter-spacing: -0.055em;
    margin-bottom: 8px;
}

.dash-hero p {
    color: #cbd5e1;
    margin-bottom: 0;
    line-height: 1.7;
    max-width: 760px;
}

.dash-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.dash-btn {
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 950;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .18s ease;
}

.dash-btn-primary {
    background: #2563eb;
    color: #fff;
}

.dash-btn-primary:hover {
    background: #1e40af;
    color: #fff;
}

.dash-btn-light {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
}

.dash-btn-light:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 26px;
}

.dash-stat {
    background: #fff;
    border: 1px solid var(--dash-border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--dash-shadow);
}

.dash-stat-label {
    color: var(--dash-muted);
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 8px;
}

.dash-stat-value {
    color: var(--dash-navy);
    font-size: 34px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.dash-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 26px;
    align-items: start;
}

.dash-card {
    background: #fff;
    border: 1px solid var(--dash-border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--dash-shadow);
    margin-bottom: 24px;
}

.dash-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.dash-card h3 {
    color: var(--dash-navy);
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -0.035em;
    margin-bottom: 5px;
}

.dash-card p {
    color: var(--dash-muted);
    line-height: 1.7;
}

.dash-table-wrap {
    overflow-x: auto;
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
}

.dash-table th {
    text-align: left;
    background: #f8fafc;
    color: #475569;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.dash-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: top;
}

.dash-table a {
    color: var(--dash-blue);
    font-weight: 900;
    text-decoration: none;
}

.dash-badge {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: capitalize;
    white-space: nowrap;
}

.dash-badge.submitted,
.dash-badge.technical_check,
.dash-badge.with_editor,
.dash-badge.under_review,
.dash-badge.reviews_completed,
.dash-badge.resubmitted {
    background: #eff6ff;
    color: #1d4ed8;
}

.dash-badge.minor_revision,
.dash-badge.major_revision,
.dash-badge.revision {
    background: #fef3c7;
    color: #92400e;
}

.dash-badge.accepted,
.dash-badge.published,
.dash-badge.in_production,
.dash-badge.proof_sent {
    background: #ecfdf5;
    color: #047857;
}

.dash-badge.rejected,
.dash-badge.withdrawn {
    background: #fef2f2;
    color: #b91c1c;
}

.profile-progress {
    width: 100%;
    height: 12px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    margin: 14px 0 10px;
}

.profile-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #1d4ed8, #22c55e);
    border-radius: 999px;
}

.side-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-list li {
    border-bottom: 1px solid #f1f5f9;
}

.side-list li:last-child {
    border-bottom: none;
}

.side-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dash-navy);
    text-decoration: none;
    font-weight: 850;
    padding: 13px 0;
}

.side-list a:hover {
    color: var(--dash-blue);
}

@media (max-width: 1100px) {
    .dash-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .dash-page {
        margin-top: 105px;
    }

    .dash-hero,
    .dash-card,
    .dash-stat {
        border-radius: 22px;
        padding: 24px;
    }

    .dash-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --home-navy: #0f172a;
    --home-navy-2: #111827;
    --home-blue: #1d4ed8;
    --home-blue-light: #2563eb;
    --home-gold: #f59e0b;
    --home-muted: #64748b;
    --home-soft: #f8fafc;
    --home-border: #e5e7eb;
    --home-white: #ffffff;
    --home-radius: 18px;
    --home-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: var(--home-navy);
}

.home-wrap {
    overflow: hidden;
}

.home-container {
    width: min(1180px, calc(100% - 36px));
    margin: auto;
}

.home-hero {
    position: relative;
    margin-top: 90px;
    min-height: 620px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.35), transparent 32%),
        radial-gradient(circle at 85% 35%, rgba(245, 158, 11, 0.18), transparent 30%),
        linear-gradient(135deg, #020617 0%, #0f172a 45%, #1e293b 100%);
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.home-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 44px;
    align-items: center;
    padding: 90px 0;
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    color: #dbeafe;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
    backdrop-filter: blur(12px);
}

.home-kicker span {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
}

.home-hero h1 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.055em;
    margin-bottom: 20px;
}

.home-hero p {
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.8;
    max-width: 720px;
    margin-bottom: 30px;
}

.home-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
    transition: 0.2s ease;
    border: 1px solid transparent;
}

.home-btn-primary {
    color: #fff;
    background: var(--home-blue-light);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.home-btn-primary:hover {
    background: #1e40af;
    color: #fff;
    transform: translateY(-2px);
}

.home-btn-light {
    color: #fff;
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.home-btn-light:hover {
    color: #fff;
    background: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}

.home-search {
    max-width: 730px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.home-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 14px;
    font-size: 15px;
    color: #111827;
}

.home-search button {
    border: none;
    background: var(--home-blue);
    color: #fff;
    padding: 13px 20px;
    border-radius: 12px;
    font-weight: 850;
    cursor: pointer;
}

.home-hero-card {
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.22);
    backdrop-filter: blur(16px);
}

.home-hero-card h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 14px;
}

.home-hero-card-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.home-hero-card-item:last-child {
    border-bottom: none;
}

.home-hero-card-item strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
}

.home-hero-card-item span {
    color: #cbd5e1;
    font-size: 14px;
}

.home-section {
    padding: 82px 0;
}

.home-section-soft {
    background: #eef2f7;
}

.home-section-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
    margin-bottom: 30px;
}

.home-section-head h2 {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.035em;
    color: var(--home-navy);
    margin: 0 0 8px;
}

.home-section-head p {
    color: var(--home-muted);
    margin: 0;
    max-width: 680px;
    line-height: 1.7;
}

.home-link {
    color: var(--home-blue);
    text-decoration: none;
    font-weight: 850;
    white-space: nowrap;
}

.home-grid {
    display: grid;
    gap: 22px;
}

.home-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-card {
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    padding: 24px;
    box-shadow: var(--home-shadow);
    transition: 0.2s ease;
}

.home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.11);
}

.home-stat {
    text-align: center;
    padding: 28px 20px;
}

.home-stat h3 {
    font-size: 34px;
    font-weight: 950;
    color: var(--home-navy);
    margin-bottom: 4px;
}

.home-stat p {
    color: var(--home-muted);
    font-weight: 750;
    margin: 0;
}

.article-card-modern {
    min-height: 230px;
    display: flex;
    flex-direction: column;
}

.article-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 850;
    margin-bottom: 14px;
}

.article-title-modern {
    font-size: 19px;
    font-weight: 900;
    line-height: 1.35;
    color: var(--home-navy);
    text-decoration: none;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.article-title-modern:hover {
    color: var(--home-blue);
}

.article-meta-modern {
    color: var(--home-muted);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.article-excerpt {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 18px;
}

.article-read {
    margin-top: auto;
    color: var(--home-blue);
    font-weight: 850;
    text-decoration: none;
}

.issue-feature {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 26px;
    align-items: stretch;
}

.issue-panel {
    background:
        radial-gradient(circle at 20% 20%, rgba(37,99,235,0.18), transparent 36%),
        linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    border-radius: 24px;
    padding: 30px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.issue-panel h3 {
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.issue-panel p {
    color: #cbd5e1;
    line-height: 1.7;
}

.issue-list {
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--home-shadow);
}

.issue-list-item {
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}

.issue-list-item:last-child {
    border-bottom: none;
}

.issue-list-item a {
    color: var(--home-navy);
    font-weight: 850;
    text-decoration: none;
}

.issue-list-item a:hover {
    color: var(--home-blue);
}

.area-card {
    text-align: left;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #eff6ff;
}

.area-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #eff6ff;
    color: var(--home-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    margin-bottom: 18px;
}

.area-card h5 {
    color: var(--home-navy);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
}

.area-card p {
    color: var(--home-muted);
    margin-bottom: 18px;
}

.home-cta {
    background:
        radial-gradient(circle at 20% 20%, rgba(245,158,11,0.18), transparent 30%),
        linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    border-radius: 30px;
    padding: 44px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.home-cta h2 {
    font-size: 34px;
    font-weight: 950;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.home-cta p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 0;
}

.home-policy {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.policy-item {
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: 18px;
    padding: 22px;
}

.policy-item strong {
    display: block;
    color: var(--home-navy);
    margin-bottom: 8px;
    font-size: 17px;
}

.policy-item span {
    color: var(--home-muted);
    line-height: 1.7;
}

@media (max-width: 980px) {
    .home-hero-inner,
    .issue-feature,
    .home-cta {
        grid-template-columns: 1fr;
    }

    .home-grid-4,
    .home-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-policy {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .home-hero {
        min-height: auto;
    }

    .home-hero-inner {
        padding: 60px 0;
    }

    .home-grid-4,
    .home-grid-3,
    .home-grid-2 {
        grid-template-columns: 1fr;
    }

    .home-search {
        flex-direction: column;
        align-items: stretch;
    }

    .home-search button {
        width: 100%;
    }

    .home-cta {
        padding: 28px;
    }
}

/* =========================================================
   ARTICLES INDEX + ARTICLE SHOW PAGES
========================================================= */

.articles-page,
.article-show-page {
    max-width: 1180px;
    margin: 120px auto 70px;
    padding: 0 18px;
}

/* Hero sections */
.pub-hero,
.articles-hero,
.article-show-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.22), transparent 34%),
        linear-gradient(135deg, #020617, #0f172a 55%, #1e293b);
    border-radius: 32px;
    padding: 48px;
    color: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
    margin-bottom: 34px;
}

.pub-hero::after,
.articles-hero::after,
.article-show-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.55;
}

.articles-hero-inner,
.article-show-hero-inner {
    position: relative;
    z-index: 2;
}

.articles-hero-inner {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 30px;
    align-items: center;
}

.pub-hero h1,
.articles-hero h1,
.article-show-hero h1,
.article-show-title {
    color: #fff !important;
    margin-bottom: 14px;
}

.pub-hero p,
.articles-hero p,
.article-show-hero p {
    color: #cbd5e1 !important;
    max-width: 820px;
}

/* Kicker */
.articles-kicker,
.article-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    color: #dbeafe !important;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 16px;
    backdrop-filter: blur(12px);
}

.articles-kicker span,
.article-kicker span {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
}

/* Search card */
.articles-search-card {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 22px;
    padding: 20px;
    backdrop-filter: blur(14px);
}

.articles-search-card label {
    display: block;
    color: #f8fafc !important;
    font-weight: 900;
    margin-bottom: 10px;
    font-size: 14px;
}

.articles-search {
    display: flex;
    gap: 8px;
    background: #fff;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.16);
}

.articles-search input {
    flex: 1;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 12px;
    color: #111827 !important;
    background: #fff;
}

.articles-search input::placeholder {
    color: #6b7280 !important;
}

.articles-search button {
    border: none;
    background: #1d4ed8;
    color: #fff;
    padding: 11px 16px;
    border-radius: 10px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

/* Header / toolbar */
.pub-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.pub-subtitle {
    color: #64748b;
    margin: 0;
}

.articles-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Buttons */
.pub-btn,
.article-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    padding: 11px 18px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.18s ease;
    font-weight: 900;
}

.pub-btn-primary,
.article-btn-primary {
    background: #1d4ed8;
    color: #fff !important;
}

.pub-btn-primary:hover,
.article-btn-primary:hover {
    background: #1e40af;
    color: #fff !important;
    transform: translateY(-1px);
}

.pub-btn-outline,
.article-btn-outline {
    background: #fff;
    color: #1d4ed8 !important;
    border-color: #e5e7eb;
}

.pub-btn-outline:hover,
.article-btn-outline:hover {
    background: #eff6ff;
    color: #1e40af !important;
}

.article-btn-muted {
    background: #f1f5f9;
    color: #0f172a !important;
    border-color: #e2e8f0;
}

.article-btn-muted:hover {
    background: #e2e8f0;
    color: #0f172a !important;
}

/* Article index layout */
.articles-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 26px;
    align-items: start;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.articles-sidebar,
.article-sidebar {
    position: sticky;
    top: 110px;
}

/* Article cards */
.article-card,
.article-card-pro {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    transition: 0.22s ease;
}

.article-card-pro {
    min-height: 270px;
    display: flex;
    flex-direction: column;
}

.article-card:hover,
.article-card-pro:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.article-card-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.article-title,
.article-title-pro {
    color: #0f172a;
    text-decoration: none;
    display: block;
    font-weight: 900;
}

.article-title:hover,
.article-title-pro:hover {
    color: #1d4ed8;
}

.article-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.read-link {
    color: #1d4ed8;
    font-weight: 900;
    text-decoration: none;
}

.read-link:hover {
    color: #1e40af;
}

/* Badges */
.article-badge,
.pub-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.badge-category {
    background: #eff6ff;
    color: #1d4ed8;
}

.badge-open {
    background: #ecfdf5;
    color: #047857;
}

.badge-subscription {
    background: #fef2f2;
    color: #b91c1c;
}

.badge-issue {
    background: #f1f5f9;
    color: #475569;
}

/* Article show layout */
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.article-panel,
.side-panel,
.side-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    margin-bottom: 24px;
}

.article-panel h2,
.article-panel h3,
.article-panel h4,
.side-panel h4,
.side-card h4 {
    color: #0f172a;
    font-weight: 900;
    margin-bottom: 16px;
}

.article-panel p,
.side-panel p,
.side-card p {
    color: #334155;
    line-height: 1.85;
}

.abstract-text {
    white-space: pre-line;
    color: #334155;
}

.article-show-meta {
    color: #cbd5e1 !important;
    font-size: 15px;
    line-height: 1.7;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.article-show-meta span {
    color: #cbd5e1 !important;
}

.article-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

/* DOI / boxes */
.doi-box,
.pub-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    margin-top: 20px;
    color: #334155;
    word-break: break-word;
}

.doi-box strong {
    color: #0f172a;
}

/* Sidebar article information */
.article-info-list,
.side-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-info-list li,
.side-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.article-info-list li:last-child,
.side-list li:last-child {
    border-bottom: none;
}

.article-info-label {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.article-info-value {
    color: #0f172a;
    font-weight: 800;
}

.side-list a,
.related-link {
    display: block;
    color: #0f172a;
    text-decoration: none;
    font-weight: 850;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.side-list a:hover,
.related-link:hover {
    color: #1d4ed8;
}

/* Locked PDF box */
.locked-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    border-radius: 14px;
    padding: 16px;
    line-height: 1.7;
    margin-top: 12px;
}

/* Authors */
.author-block {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.author-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Empty state */
.pub-empty {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 45px 24px;
    text-align: center;
    color: #64748b;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.pagination-wrap {
    margin-top: 28px;
}

/* Responsive */
@media (max-width: 1050px) {
    .articles-hero-inner,
    .articles-layout {
        grid-template-columns: 1fr;
    }

    .articles-sidebar {
        position: static;
    }
}

@media (max-width: 980px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }
}

@media (max-width: 760px) {
    .articles-page,
    .article-show-page {
        margin-top: 105px;
    }

    .pub-hero,
    .articles-hero,
    .article-show-hero {
        padding: 30px;
        border-radius: 24px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .articles-search {
        flex-direction: column;
    }

    .articles-search button {
        width: 100%;
    }

    .pub-header {
        flex-direction: column;
    }

    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================================================
   JOURNALS INDEX + JOURNAL SHOW + ISSUES PAGES
========================================================= */

/* =========================
   Page Containers
========================= */

.journals-page,
.journal-show-page,
.issue-page,
.issueshow-page {
    max-width: 1180px;
    margin: 120px auto 70px;
    padding: 0 18px;
}

/* =========================
   Hero Sections
========================= */

.journals-hero,
.journal-hero,
.issue-hero,
.issueshow-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.22), transparent 34%),
        linear-gradient(135deg, #020617, #0f172a 55%, #1e293b);
    border-radius: 32px;
    padding: 48px;
    color: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
    margin-bottom: 34px;
}

.journals-hero::after,
.journal-hero::after,
.issue-hero::after,
.issueshow-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.55;
}

.journals-hero > *,
.journal-hero > *,
.issue-hero-inner,
.issueshow-hero-inner {
    position: relative;
    z-index: 2;
}

.journals-hero h1,
.journal-hero h1,
.issue-hero h1,
.issueshow-hero h1 {
    color: #fff !important;
    margin-bottom: 14px;
}

.journals-hero p,
.journal-hero p,
.issue-hero p,
.issueshow-hero p {
    color: #cbd5e1 !important;
    max-width: 820px;
}

/* =========================
   Hero Kicker
========================= */

.issue-kicker,
.issueshow-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    color: #dbeafe !important;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 16px;
    backdrop-filter: blur(12px);
}

.issue-kicker span,
.issueshow-kicker span {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
}

/* =========================
   Journal Index
========================= */

.journals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 24px;
}

.journal-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
    transition: 0.22s ease;
    height: 100%;
}

.journal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.journal-card h3 {
    color: #0f172a;
    font-weight: 950;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.journal-card h3 a {
    color: #0f172a;
    text-decoration: none;
}

.journal-card h3 a:hover {
    color: #1d4ed8;
}

.journal-description {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 18px;
}

.journal-meta {
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.journal-badges,
.journal-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 18px;
}

.journal-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
    background: #eff6ff;
    color: #1d4ed8;
}

.journal-badge-green {
    background: #ecfdf5;
    color: #047857;
}

.journal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

/* =========================
   Journal Show
========================= */

.journal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.journal-sidebar {
    position: sticky;
    top: 110px;
}

.journal-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
    margin-bottom: 24px;
}

.journal-panel h2,
.journal-panel h3,
.journal-panel h4 {
    color: #0f172a;
    font-weight: 950;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.journal-panel p,
.journal-panel li {
    color: #334155;
    line-height: 1.85;
}

.journal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 12px;
    padding: 12px 16px;
    text-decoration: none;
    font-weight: 900;
    transition: 0.2s ease;
    border: 1px solid transparent;
    margin-top: 10px;
}

.journal-btn-primary {
    background: #1d4ed8;
    color: #fff !important;
}

.journal-btn-primary:hover {
    background: #1e40af;
    color: #fff !important;
    transform: translateY(-1px);
}

.journal-btn-outline {
    background: #fff;
    color: #1d4ed8 !important;
    border-color: #e5e7eb;
}

.journal-btn-outline:hover {
    background: #eff6ff;
    color: #1e40af !important;
}

/* =========================
   Information Lists
========================= */

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-label {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.info-value {
    color: #0f172a;
    font-weight: 800;
}

/* =========================
   Article / Issue Links
========================= */

.article-link,
.issue-link {
    display: block;
    color: #0f172a;
    text-decoration: none;
    font-weight: 850;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.article-link:hover,
.issue-link:hover {
    color: #1d4ed8;
}

.small-meta {
    color: #64748b;
    font-size: 13px;
    margin-top: 4px;
    line-height: 1.65;
}

/* =========================
   Issues Index
========================= */

.issue-toolbar,
.issueshow-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.issue-toolbar h2,
.issueshow-toolbar h2 {
    color: #0f172a;
    font-weight: 950;
    letter-spacing: -0.035em;
    margin-bottom: 8px;
}

.issue-toolbar p,
.issue-toolbar span,
.issueshow-toolbar p,
.issueshow-toolbar span {
    color: #64748b;
}

.issue-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.issue-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
    transition: 0.22s ease;
}

.issue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.issue-card::before {
    content: "";
    position: absolute;
    right: -45px;
    top: -45px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #eff6ff;
}

.issue-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: #eff6ff;
    color: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.issue-title {
    color: #0f172a;
    text-decoration: none;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 2;
}

.issue-title:hover {
    color: #1d4ed8;
}

.issue-meta {
    color: #64748b;
    line-height: 1.75;
    margin-top: 12px;
    position: relative;
    z-index: 2;
}

.issue-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    position: relative;
    z-index: 2;
}

.issue-count {
    display: inline-flex;
    align-items: center;
    background: #ecfdf5;
    color: #047857;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
}

.issue-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 11px 18px;
    text-decoration: none;
    font-weight: 900;
    transition: 0.18s ease;
}

.issue-btn-primary {
    background: #1d4ed8;
    color: #fff !important;
}

.issue-btn-primary:hover {
    background: #1e40af;
    color: #fff !important;
    transform: translateY(-1px);
}

.issue-empty,
.empty-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 42px 24px;
    text-align: center;
    color: #64748b;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}

/* =========================
   Issue Show
========================= */

.issueshow-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}

.issueshow-sidebar {
    position: sticky;
    top: 110px;
}

.issueshow-list {
    display: grid;
    gap: 20px;
}

.issueshow-article {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
    transition: 0.22s ease;
}

.issueshow-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.article-type {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 850;
    margin-bottom: 12px;
}

.issueshow-title {
    display: block;
    color: #0f172a;
    text-decoration: none;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
}

.issueshow-title:hover {
    color: #1d4ed8;
}

.issueshow-meta {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.65;
    margin-bottom: 12px;
}

.issueshow-excerpt {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 14px;
}

.issueshow-read {
    color: #1d4ed8;
    font-weight: 900;
    text-decoration: none;
}

.issueshow-read:hover {
    color: #1e40af;
}

.issueshow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 12px;
    padding: 11px 18px;
    text-decoration: none;
    font-weight: 900;
    transition: 0.18s ease;
    margin-top: 10px;
}

.issueshow-btn-primary {
    background: #1d4ed8;
    color: #fff !important;
}

.issueshow-btn-primary:hover {
    background: #1e40af;
    color: #fff !important;
}

.issueshow-btn-outline {
    background: #fff;
    color: #1d4ed8 !important;
    border: 1px solid #e5e7eb;
}

.issueshow-btn-outline:hover {
    background: #eff6ff;
    color: #1e40af !important;
}

.issueshow-empty {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 42px 24px;
    text-align: center;
    color: #64748b;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}

/* =========================
   Responsive
========================= */

@media (max-width: 980px) {
    .journal-layout,
    .issueshow-layout {
        grid-template-columns: 1fr;
    }

    .journal-sidebar,
    .issueshow-sidebar {
        position: static;
    }
}

@media (max-width: 900px) {
    .issue-toolbar,
    .issueshow-toolbar {
        flex-direction: column;
    }

    .issue-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .journals-page,
    .journal-show-page,
    .issue-page,
    .issueshow-page {
        margin-top: 105px;
    }

    .journals-hero,
    .journal-hero,
    .issue-hero,
    .issueshow-hero {
        padding: 30px;
        border-radius: 24px;
    }

    .journal-panel,
    .journal-card,
    .issue-card,
    .issueshow-article {
        padding: 22px;
    }

    .issue-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   SUBMISSION PAGES
   My Submissions, Submit Manuscript, Submission Details,
   Compare Versions, Revision, Production Workflow
========================================================= */

/* =========================
   Main Container
========================= */

.pub-page {
    max-width: 1180px;
    margin: 120px auto 70px;
    padding: 0 18px;
}

/* =========================
   Header
========================= */

.pub-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.pub-header h1,
.pub-header h2 {
    color: #0f172a;
    font-weight: 950;
    letter-spacing: -0.04em;
    margin: 0 0 8px;
}

.pub-subtitle {
    color: #64748b;
    margin: 0;
    line-height: 1.65;
}

/* =========================
   Cards / Boxes
========================= */

.pub-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
    padding: 30px;
    margin-bottom: 24px;
}

.pub-card h3,
.pub-card h4,
.pub-card h5 {
    color: #0f172a;
    font-weight: 950;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
}

.pub-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 16px;
}

.pub-box p:last-child {
    margin-bottom: 0;
}

.pub-meta {
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 8px;
}

.pub-empty {
    text-align: center;
    padding: 45px 20px;
    color: #64748b;
}

/* =========================
   Statistic Cards
========================= */

.pub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.pub-stat {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.pub-stat-label {
    color: #64748b;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.pub-stat-value {
    color: #0f172a;
    font-weight: 950;
}

/* =========================
   Buttons
========================= */

.pub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    padding: 11px 18px;
    font-weight: 900;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.18s ease;
}

.pub-btn-primary {
    background: #1d4ed8;
    color: #ffffff !important;
}

.pub-btn-primary:hover {
    background: #1e40af;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.pub-btn-secondary {
    background: #f1f5f9;
    color: #0f172a !important;
    border-color: #e2e8f0;
}

.pub-btn-secondary:hover {
    background: #e2e8f0;
    color: #0f172a !important;
}

.pub-btn-outline {
    background: #ffffff;
    color: #1d4ed8 !important;
    border-color: #e5e7eb;
}

.pub-btn-outline:hover {
    background: #eff6ff;
    color: #1e40af !important;
}

/* =========================
   Alerts
========================= */

.pub-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 15px 18px;
    border-radius: 14px;
    margin-bottom: 20px;
    font-weight: 850;
}

.pub-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 15px 18px;
    border-radius: 14px;
    margin-bottom: 20px;
}

/* =========================
   Tables
========================= */

.pub-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

.pub-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 850px;
}

.pub-table thead {
    background: #f8fafc;
}

.pub-table th {
    padding: 15px 16px;
    color: #475569;
    text-align: left;
    font-weight: 900;
    border-bottom: 1px solid #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.pub-table td {
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #1f2937;
    vertical-align: middle;
}

.pub-table tbody tr:hover {
    background: #f8fafc;
}

/* =========================
   Badges / Chips
========================= */

.pub-badge,
.pub-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    white-space: nowrap;
}

.pub-badge {
    padding: 6px 11px;
    font-weight: 850;
    text-transform: capitalize;
}

.pub-chip {
    background: #eef2ff;
    color: #1e3a8a;
    padding: 7px 11px;
    margin: 5px;
    font-weight: 850;
}

/* General workflow statuses */
.pub-badge.draft,
.pub-badge.submitted,
.pub-badge.waiting_author_approval {
    background: #eef2ff;
    color: #3730a3;
}

.pub-badge.technical_check,
.pub-badge.returned_to_author,
.pub-badge.with_editor,
.pub-badge.editor_assigned,
.pub-badge.reviewers_invited,
.pub-badge.under_review,
.pub-badge.reviews_completed,
.pub-badge.editor_recommendation,
.pub-badge.decision_pending,
.pub-badge.copyediting {
    background: #fffbeb;
    color: #92400e;
}

.pub-badge.minor_revision,
.pub-badge.major_revision,
.pub-badge.revision,
.pub-badge.resubmitted {
    background: #eff6ff;
    color: #1d4ed8;
}

.pub-badge.accepted,
.pub-badge.in_production,
.pub-badge.proof_sent,
.pub-badge.proof_approved,
.pub-badge.published,
.pub-badge.accept {
    background: #ecfdf5;
    color: #047857;
}

.pub-badge.rejected,
.pub-badge.withdrawn,
.pub-badge.reject {
    background: #fef2f2;
    color: #b91c1c;
}

.pub-badge.not_sent,
.pub-badge.pending {
    background: #f1f5f9;
    color: #475569;
}

.pub-badge.sent {
    background: #ecfdf5;
    color: #047857;
}

/* Similarity statuses */
.pub-badge.clear,
.pub-badge.acceptable,
.pub-badge.completed {
    background: #ecfdf5;
    color: #047857;
}

.pub-badge.needs_review,
.pub-badge.review_required {
    background: #fffbeb;
    color: #92400e;
}

.pub-badge.failed,
.pub-badge.high_similarity {
    background: #fef2f2;
    color: #b91c1c;
}

/* =========================
   Forms
========================= */

.pub-form-group {
    margin-bottom: 18px;
}

.pub-form-group label {
    display: block;
    color: #334155;
    font-weight: 900;
    margin-bottom: 8px;
}

.pub-control {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 12px 14px;
    color: #111827;
    background: #ffffff;
    transition: 0.18s ease;
}

.pub-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

textarea.pub-control {
    resize: vertical;
}

.pub-note {
    color: #64748b;
    margin-top: 6px;
    line-height: 1.6;
}

/* Checkbox alignment */
.pub-form-group input[type="checkbox"] {
    width: auto;
    min-width: 16px;
    margin-top: 3px;
}

/* =========================
   Submission Stepper
========================= */

.pub-stepper {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin: 28px 0 32px;
}

.pub-step {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 10px 8px;
    border-radius: 999px;
    text-align: center;
    font-weight: 900;
}

.pub-step.active {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

/* =========================
   Submission Timeline
========================= */

.pub-timeline {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    padding: 12px 4px 4px;
}

.pub-timeline-item {
    flex: 1;
    min-width: 125px;
    text-align: center;
    position: relative;
}

.pub-timeline-dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    color: #ffffff;
    background: #d1d5db;
    position: relative;
    z-index: 2;
}

.pub-timeline-dot.done {
    background: #16a34a;
}

.pub-timeline-line {
    position: absolute;
    top: 21px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: #e5e7eb;
    z-index: 1;
}

.pub-timeline-line.done {
    background: #16a34a;
}

/* =========================
   Compare Versions
========================= */

.pub-two-col,
.version-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.pub-box h5 {
    color: #0f172a;
    font-weight: 950;
    margin-bottom: 14px;
}

/* Your compare page uses inline grid; this makes inner anchors stack cleanly */
.pub-box .pub-btn {
    margin-top: 8px;
    margin-right: 8px;
}

/* =========================
   Upload / File Sections
========================= */

.pub-dropzone {
    border: 2px dashed #cbd5e1;
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    color: #64748b;
    font-weight: 850;
    cursor: pointer;
    transition: 0.18s ease;
}

.pub-dropzone.dragover {
    border-color: #2563eb;
    background: #eff6ff;
    color: #1d4ed8;
}

/* =========================
   Production / Decision Blocks
========================= */

.pub-card .pub-box strong {
    color: #0f172a;
}

.pub-card .pub-box a + a {
    margin-left: 8px;
}

.pub-card form .pub-btn {
    margin-top: 4px;
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {
    .pub-header {
        flex-direction: column;
    }

    .pub-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pub-stepper {
        grid-template-columns: repeat(2, 1fr);
    }

    .pub-two-col,
    .version-compare-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .pub-page {
        margin-top: 105px;
    }

    .pub-card {
        padding: 22px;
        border-radius: 18px;
    }

    .pub-grid {
        grid-template-columns: 1fr;
    }

    .pub-stepper {
        grid-template-columns: 1fr;
    }

    .pub-header .pub-btn {
        width: 100%;
    }

    .pub-timeline {
        justify-content: flex-start;
    }

    .pub-table {
        min-width: 760px;
    }
}

/* =========================================================
   PROFILE PAGE COMPACT PROFESSIONAL FORM FIX
   Reduces oversized inputs, selects, textareas, and spacing
========================================================= */

/* Profile page card spacing */
.profile-page .profile-card {
    padding: 26px;
}

.profile-page .profile-card-header {
    margin-bottom: 18px;
    padding-bottom: 16px;
}

/* Section titles */
.profile-page .form-section-title {
    font-size: 14px;
    font-weight: 950;
    color: #0f172a;
    margin: 20px 0 12px;
}

/* Grid spacing */
.profile-page .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

/* Field spacing */
.profile-page .form-group {
    margin-bottom: 0;
}

.profile-page .form-group.full {
    grid-column: 1 / -1;
}

/* Labels */
.profile-page .form-label {
    display: block;
    font-size: 12px !important;
    font-weight: 850 !important;
    color: #334155;
    margin-bottom: 6px;
}

/* Inputs, selects, textarea */
.profile-page .form-control {
    width: 100%;
    min-height: 40px;
    height: 40px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 8px 11px;
    font-size: 13px !important;
    line-height: 1.4;
    color: #0f172a;
    background: #ffffff;
    box-shadow: none;
}

/* Select fields */
.profile-page select.form-control {
    height: 40px;
    padding: 8px 10px;
}

/* Multiple select only */
.profile-page select.form-control[multiple] {
    height: auto;
    min-height: 104px !important;
    padding: 8px 10px;
}

/* Textareas */
.profile-page textarea.form-control {
    height: auto;
    min-height: 86px;
    padding: 9px 11px;
    resize: vertical;
}

/* Focus state */
.profile-page .form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
}

/* Help text */
.profile-page .field-note {
    display: block;
    margin-top: 5px;
    font-size: 11.5px !important;
    line-height: 1.5;
    color: #64748b;
}

/* Buttons */
.profile-page .btn-profile-primary,
.profile-page .btn-profile-secondary,
.profile-page .btn-profile-orcid {
    padding: 10px 16px;
    border-radius: 11px;
    font-size: 13px !important;
    font-weight: 900;
}

/* Actions spacing */
.profile-page .profile-actions {
    margin-top: 22px;
    padding-top: 18px;
}

/* Sidebar cards */
.profile-page .side-card {
    padding: 22px;
}

.profile-page .side-card h4 {
    font-size: 17px !important;
    margin-bottom: 10px;
}

.profile-page .side-card p {
    font-size: 13.5px !important;
    line-height: 1.65;
}

/* ORCID box */
.profile-page .orcid-status-box {
    padding: 14px;
    border-radius: 14px;
}

/* Summary rows */
.profile-page .profile-summary-row {
    padding: 10px 0;
}

.profile-page .profile-summary-label,
.profile-page .profile-summary-value {
    font-size: 12.5px !important;
}

/* Quick links */
.profile-page .quick-list a {
    padding: 11px 0;
    font-size: 13.5px !important;
}

/* Mobile */
@media (max-width: 720px) {
    .profile-page .form-grid {
        grid-template-columns: 1fr;
    }

    .profile-page .profile-card,
    .profile-page .side-card {
        padding: 20px;
    }

    .profile-page .form-control {
        height: 40px;
    }

    .profile-page textarea.form-control {
        min-height: 90px;
    }
}


/* =========================================================
   REVIEWER INVITATION PUBLIC PAGES
========================================================= */

.review-invite-page {
    min-height: calc(100vh - 120px);
    padding: 140px 20px 80px;
    background:
        radial-gradient(circle at 12% 15%, rgba(37, 99, 235, 0.12), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(166, 206, 57, 0.12), transparent 28%),
        #f8fafc;
}

.review-invite-card {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.review-invite-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
}

.review-invite-kicker span {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
}

.review-invite-card h1 {
    color: #0f172a;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.045em;
    margin-bottom: 12px;
}

.review-invite-subtitle {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
    max-width: 760px;
    margin-bottom: 24px;
}

.review-manuscript-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 24px;
    margin: 24px 0;
}

.review-manuscript-label {
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}

.review-manuscript-title {
    color: #0f172a;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 950;
    margin-bottom: 20px;
}

.review-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.review-meta-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 14px;
}

.review-meta-item span {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 4px;
}

.review-meta-item strong {
    color: #0f172a;
    font-size: 14px;
    font-weight: 950;
}

.review-policy-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 22px;
    padding: 22px;
    margin-bottom: 24px;
}

.review-policy-box h3 {
    color: #9a3412;
    font-size: 18px;
    font-weight: 950;
    margin-bottom: 12px;
}

.review-policy-box ul {
    margin: 0;
    padding-left: 20px;
}

.review-policy-box li {
    color: #7c2d12;
    margin-bottom: 7px;
    line-height: 1.7;
}

.review-form-group {
    margin-top: 24px;
}

.review-form-group label {
    display: block;
    color: #334155;
    font-size: 13px;
    font-weight: 950;
    margin-bottom: 8px;
}

.review-textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    padding: 14px;
    color: #0f172a;
    background: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    resize: vertical;
}

.review-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.review-note {
    color: #64748b;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 6px;
}

.review-invite-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 950;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.18s ease;
}

.review-btn-success {
    background: #047857;
    color: #ffffff;
}

.review-btn-success:hover {
    background: #065f46;
    color: #ffffff;
    transform: translateY(-1px);
}

.review-btn-primary {
    background: #1d4ed8;
    color: #ffffff;
}

.review-btn-primary:hover {
    background: #1e40af;
    color: #ffffff;
    transform: translateY(-1px);
}

.review-btn-secondary {
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.review-btn-secondary:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.review-btn-danger {
    background: #b91c1c;
    color: #ffffff;
}

.review-btn-danger:hover {
    background: #991b1b;
    color: #ffffff;
    transform: translateY(-1px);
}

.review-btn-danger-outline {
    background: #ffffff;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.review-btn-danger-outline:hover {
    background: #fef2f2;
    color: #991b1b;
}

.review-invite-alert {
    border-radius: 18px;
    padding: 16px;
    margin: 20px 0;
    line-height: 1.7;
}

.review-invite-alert-warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.review-invite-alert-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.review-invite-alert ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

@media (max-width: 720px) {
    .review-invite-page {
        padding: 115px 14px 60px;
    }

    .review-invite-card {
        padding: 26px;
        border-radius: 22px;
    }

    .review-meta-grid {
        grid-template-columns: 1fr;
    }

    .review-invite-actions {
        flex-direction: column;
    }

    .review-btn {
        width: 100%;
    }
}

/* =========================================================
   SKLS Publisher Typography System
   Academic / Journal / Publisher Style
   Add this at the END of your CSS file
========================================================= */

:root {
    --font-editorial: Georgia, "Times New Roman", Times, serif;
    --font-ui: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --text-main: #111827;
    --text-muted: #4b5563;
    --text-soft: #6b7280;

    --heading-weight: 700;
    --ui-weight: 600;
}

/* Global base */
body {
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-main);
    letter-spacing: 0;
}

/* Main editorial/article text */
.article-content,
.manuscript-content,
.journal-content,
.publisher-content,
.catshow-excerpt,
.cat-description,
.profile-card p,
.dash-card p,
.side-card p {
    font-family: var(--font-editorial);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 400;
    color: #1f2937;
}

/* Main page titles */
h1,
.auth-brand h1,
.cat-hero h1,
.catshow-hero h1,
.profile-hero h1,
.dash-hero h1,
.invitation-card h1,
.decline-card h1 {
    font-family: var(--font-editorial);
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.015em;
}

/* Section titles */
h2,
.cat-toolbar h2,
.catshow-toolbar h2 {
    font-family: var(--font-editorial);
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Card titles / article titles */
h3,
.profile-card h3,
.dash-card h3,
.cat-title,
.catshow-title {
    font-family: var(--font-editorial);
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.005em;
}

/* Labels, buttons, metadata remain sans-serif */
.form-label,
.input-field,
.form-control,
button,
.btn,
.dash-btn,
.cat-btn,
.catshow-btn,
.login-btn,
.submit-btn,
.orcid-auth-btn,
.article-type,
.catshow-meta,
.dash-table,
.dash-badge,
.section-chip,
.progress-step {
    font-family: var(--font-ui);
}

/* Form labels */
.form-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
}

/* Inputs */
.input-field,
.form-control {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}

/* Buttons */
button,
.btn,
.dash-btn,
.cat-btn,
.catshow-btn,
.login-btn,
.submit-btn,
.orcid-auth-btn {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
}

/* Small metadata */
.catshow-meta,
.dash-stat-label,
.profile-summary-label,
.input-note,
.field-note,
.footer,
.login-footer {
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
    color: var(--text-soft);
}

/* Reduce exaggerated ultra-bold style */
strong,
.brand-logo strong,
.section-title,
.form-section-title,
.profile-identity-name,
.side-card h4 {
    font-weight: 700;
    letter-spacing: 0;
}

.journal-submit-banner {
    margin: 18px 0 22px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eff6ff, #f8fafc);
    border: 1px solid #bfdbfe;
}

.journal-submit-kicker {
    font-size: 12px;
    font-weight: 800;
    color: #1d4ed8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.journal-submit-title {
    font-size: 18px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 6px;
}

.journal-submit-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.journal-submit-link {
    display: inline-flex;
    margin-top: 12px;
    font-weight: 800;
    color: #1d4ed8;
    text-decoration: none;
}

.pub-journal-banner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin: 18px 0 24px;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, #eff6ff, #f8fafc);
    border: 1px solid #bfdbfe;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.pub-journal-kicker {
    font-size: 12px;
    font-weight: 900;
    color: #1d4ed8;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
}

.pub-journal-banner h2 {
    margin: 0 0 8px;
    font-size: 24px;
    color: #0f172a;
    font-weight: 900;
}

.pub-journal-banner p {
    margin: 4px 0;
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pub-journal-banner {
        flex-direction: column;
    }
}

/* =========================================================
   SUBMISSION PAGE — ELSEVIER / SPRINGER-LIKE EDITORIAL STYLE
   Compact, professional, manuscript-submission interface
   Add this at the END of the CSS file
========================================================= */

.pub-page {
    max-width: 1120px;
    margin: 105px auto 60px;
    padding: 0 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #222;
}

/* Page background for submission area */
body:has(.pub-page) {
    background: #f5f5f5;
}

/* Main submission card */
.pub-page .pub-card {
    background: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 26px 30px;
}

/* Header */
.pub-page .pub-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e5e5e5;
}

.pub-page .pub-header h1,
.pub-page .pub-header h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: 0;
    color: #222;
    margin: 0 0 6px;
}

.pub-page .pub-subtitle {
    font-size: 14px;
    line-height: 1.55;
    color: #555;
    margin: 0;
}

/* Journal banner */
.pub-page .pub-journal-banner {
    background: #f7f7f7;
    border: 1px solid #dcdcdc;
    border-left: 4px solid #007398;
    border-radius: 3px;
    padding: 16px 18px;
    margin: 0 0 22px;
    box-shadow: none;
}

.pub-page .pub-journal-kicker {
    font-size: 11px;
    font-weight: 700;
    color: #007398;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 5px;
}

.pub-page .pub-journal-banner h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #222;
    margin: 0 0 6px;
}

.pub-page .pub-journal-banner p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 3px 0;
}

/* Stepper */
.pub-page .pub-stepper {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    margin: 22px 0 28px;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    overflow: hidden;
    background: #f7f7f7;
}

.pub-page .pub-step {
    border: none;
    border-right: 1px solid #d8d8d8;
    border-radius: 0;
    background: #f7f7f7;
    color: #555;
    padding: 11px 8px;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 600;
    text-align: center;
}

.pub-page .pub-step:last-child {
    border-right: none;
}

.pub-page .pub-step.active {
    background: #007398;
    color: #ffffff;
}

/* Step titles */
.pub-page .step h4,
.pub-page .pub-card h3,
.pub-page .pub-card h4,
.pub-page .pub-card h5 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    color: #222;
    letter-spacing: 0;
    margin: 0 0 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e5e5;
}

/* Form groups */
.pub-page .pub-form-group {
    margin-bottom: 16px;
}

.pub-page .pub-form-group label {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

/* Inputs, selects, textareas */
.pub-page .pub-control {
    width: 100%;
    min-height: 38px;
    border: 1px solid #bfbfbf;
    border-radius: 3px;
    padding: 8px 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: #222;
    background: #ffffff;
    box-shadow: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pub-page select.pub-control {
    height: 38px;
    padding: 7px 9px;
}

.pub-page textarea.pub-control {
    min-height: 110px;
    resize: vertical;
}

.pub-page .pub-control:focus {
    outline: none;
    border-color: #007398;
    box-shadow: 0 0 0 2px rgba(0, 115, 152, 0.15);
}

/* Notes / help text */
.pub-page .pub-note,
.pub-page .pub-meta {
    font-size: 12.5px;
    line-height: 1.55;
    color: #666;
    margin-top: 5px;
}

/* Boxes */
.pub-page .pub-box {
    background: #fafafa;
    border: 1px solid #dcdcdc;
    border-radius: 3px;
    padding: 14px 16px;
    margin-bottom: 16px;
    color: #333;
}

.pub-page .pub-box strong {
    color: #222;
    font-weight: 600;
}

/* Author boxes */
.pub-page .author-box {
    background: #fbfbfb;
    border: 1px solid #dcdcdc;
    border-radius: 3px;
    padding: 16px;
    margin-bottom: 14px;
}

/* Two-column grid */
.pub-page .pub-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/* Buttons */
.pub-page .pub-btn {
    border-radius: 3px;
    padding: 9px 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13.5px;
    line-height: 1.3;
    font-weight: 600;
    text-decoration: none;
    box-shadow: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pub-page .pub-btn-primary {
    background: #007398;
    border-color: #007398;
    color: #ffffff !important;
}

.pub-page .pub-btn-primary:hover {
    background: #005f7f;
    border-color: #005f7f;
    color: #ffffff !important;
    transform: none;
    box-shadow: none;
}

.pub-page .pub-btn-secondary,
.pub-page .pub-btn-outline {
    background: #ffffff;
    border: 1px solid #bfbfbf;
    color: #333 !important;
}

.pub-page .pub-btn-secondary:hover,
.pub-page .pub-btn-outline:hover {
    background: #f2f2f2;
    border-color: #999;
    color: #222 !important;
    transform: none;
}

/* Alerts */
.pub-page .pub-alert-success,
.pub-page .pub-alert-error {
    border-radius: 3px;
    padding: 13px 15px;
    font-size: 13.5px;
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 18px;
}

.pub-page .pub-alert-success {
    background: #f0f7f2;
    color: #1f5f38;
    border: 1px solid #b7d7c2;
}

.pub-page .pub-alert-error {
    background: #fff2f0;
    color: #9f1d15;
    border: 1px solid #e5b5b0;
}

/* Tables */
.pub-page .pub-table-wrap {
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    background: #ffffff;
}

.pub-page .pub-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13.5px;
}

.pub-page .pub-table thead {
    background: #f2f2f2;
}

.pub-page .pub-table th {
    padding: 10px 12px;
    color: #333;
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid #d8d8d8;
}

.pub-page .pub-table td {
    padding: 11px 12px;
    color: #333;
    border-bottom: 1px solid #eeeeee;
    vertical-align: top;
}

.pub-page .pub-table tbody tr:hover {
    background: #fafafa;
}

/* Badges / chips */
.pub-page .pub-badge,
.pub-page .pub-chip {
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
}

.pub-page .pub-chip {
    background: #eaf4f7;
    color: #005f7f;
    margin: 3px;
}

/* Checkbox / radio alignment */
.pub-page input[type="checkbox"],
.pub-page input[type="radio"] {
    width: auto;
    min-width: 14px;
    height: 14px;
    margin-top: 2px;
    accent-color: #007398;
}

/* File rows */
.pub-page .file-upload-row {
    gap: 8px !important;
    margin-bottom: 8px !important;
}

/* Confirmation page */
.pub-page #confirmAbstract,
.pub-page #confirmKeywords,
.pub-page #confirmClassifications,
.pub-page #confirmFiles,
.pub-page #confirmConflict {
    font-size: 13.5px;
    color: #333;
    line-height: 1.55;
}

/* Abstract counter */
.pub-page #abstractCounter {
    font-size: 12.5px;
    font-weight: 600;
    color: #555;
}

/* Required asterisk */
.pub-page label span[style*="color:#dc2626"],
.pub-page label span[style*="color: #dc2626"] {
    color: #d71920 !important;
}

/* Mobile */
@media (max-width: 900px) {
    .pub-page {
        margin-top: 95px;
        padding: 0 14px;
    }

    .pub-page .pub-card {
        padding: 22px;
    }

    .pub-page .pub-header {
        flex-direction: column;
    }

    .pub-page .pub-stepper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pub-page .pub-step {
        border-right: 1px solid #d8d8d8;
        border-bottom: 1px solid #d8d8d8;
    }

    .pub-page .pub-two-col {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 560px) {
    .pub-page .pub-stepper {
        grid-template-columns: 1fr;
    }

    .pub-page .pub-card {
        padding: 18px;
    }

    .pub-page .pub-btn {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .header-area .main-nav .nav {
        display: none;
        width: 100%;
        background: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 9999;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    }

    .header-area .main-nav .nav.mobile-open {
        display: block !important;
    }

    .header-area .main-nav .nav li {
        display: block;
        width: 100%;
        border-bottom: 1px solid #e5e7eb;
    }

    .header-area .main-nav .nav li a {
        display: block;
        padding: 14px 20px;
    }

    .header-area .main-nav {
        position: relative;
    }

    .menu-trigger {
        display: block;
        cursor: pointer;
    }
}

@media (min-width: 992px) {
    .header-area .main-nav .nav {
        display: flex !important;
    }
}