/* CSS For Editorial Board 
============================================= 
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html,
body {
    height: 100%
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #111;
    background: #ffffff;

}

.container_member {
    max-width: 900px;
    margin: 0 auto
}

.header {
    text-align: center;
    margin-bottom: 28px
}

.header h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 6px
}

.header p {
    color: #556;
    margin: 0;
    font-size: 14px
}

.board {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.member {
    display: grid;
    gap: 18px;
    align-items: start;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee
}

.member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px
}

.member .placeholder {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-weight: 600
}

.member h3 {
    font-size: 18px;
    margin-bottom: 6px
}

.role {
    display: inline-block;
    background: #f0f7ff;
    color: #0b57d0;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px
}

.info p {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4
}

.discipline {
    margin-top: 8px;
    font-size: 13px;
    color: #555;
    border-top: 1px solid #f1f1f1;
    padding-top: 10px
}

.links {
    display: flex;
    gap: 10px;
    margin-top: 12px
}

.links a {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    color: #111;
    border: 1px solid #eee;
    background: #fafafa
}

.links a.email {
    background: #fff6f0;
    border-color: #ffe6cf;
    color: #c24b00
}

.links a.research {
    background: #f9f5ff;
    border-color: #efe0ff;
    color: #6a1b9a
}

@media (max-width:640px) {
    .member {
        grid-template-columns: 1fr;
        grid-auto-rows: auto
    }

    .member img,
    .member .placeholder {
        width: 55% !important;
        height: 200px
    }
}

/* Hard Copy Style */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

#hc-publications-archive {
    --primary-bg: #0f172a;
    --secondary-bg: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #cbd5e1;
    --accent-color: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.4);
    --border-color: #334155;
    --available-bg: rgba(16, 185, 129, 0.15);
    --available-text: #34d399;

    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-image:
        radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 0.2) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 0.1) 0, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
}

#hc-publications-archive .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

#hc-publications-archive header {
    text-align: center;
    margin-bottom: 60px;
}

#hc-publications-archive h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

#hc-publications-archive p.subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

#hc-publications-archive .table-section {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin-bottom: 60px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#hc-publications-archive .table-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), 0 0 20px rgba(59, 130, 246, 0.2);
}

#hc-publications-archive .section-header {
    background: rgba(15, 23, 42, 0.8);
    padding: 24px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#hc-publications-archive .section-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

#hc-publications-archive .section-header h2::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
}

#hc-publications-archive .table-container {
    width: 100%;
    overflow-x: auto;
}

#hc-publications-archive table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

#hc-publications-archive th,
#hc-publications-archive td {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#hc-publications-archive th {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    background: rgba(30, 41, 59, 0.9);
}

#hc-publications-archive tbody tr {
    transition: background-color 0.2s ease;
}

#hc-publications-archive tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

#hc-publications-archive tbody tr:last-child td {
    border-bottom: none;
}

#hc-publications-archive .td-title {
    font-weight: 500;
    color: #f1f5f9;
    line-height: 1.5;
    max-width: 600px;
}

#hc-publications-archive .status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--available-bg);
    color: var(--available-text);
    border: 1px solid rgba(52, 211, 153, 0.3);
    white-space: nowrap;
}

#hc-publications-archive .status-badge i {
    margin-right: 6px;
    font-size: 10px;
}

#hc-publications-archive .toc {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

#hc-publications-archive .toc h3 {
    margin-top: 0;
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

#hc-publications-archive .toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

#hc-publications-archive .toc li a {
    color: var(--accent-color);
    text-decoration: none;
    background: rgba(59, 130, 246, 0.1);
    padding: 12px 18px;
    border-radius: 8px;
    display: block;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    font-size: 0.95rem;
}

#hc-publications-archive .toc li a:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    #hc-publications-archive .container {
        padding: 20px 10px;
    }

    #hc-publications-archive h1 {
        font-size: 2rem;
    }

    #hc-publications-archive th,
    #hc-publications-archive td {
        padding: 15px;
    }

    #hc-publications-archive .td-title {
        font-size: 0.95rem;
    }
}

/* Container spacing specifically for your new block */
.block_make_submission_new .content {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Adds space between the two buttons */
    margin-bottom: 20px;
}

/* Base Modern Button Style */
.modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: none;
    width: 100%; /* Makes the button span the full width of the sidebar */
    box-sizing: border-box;
}

/* Unified Style for Both Buttons (Solid Academic Blue) */
.primary-btn,
.secondary-btn {
    background-color: #f4a024;
    color: #ffffff !important;
    border: none; 
}

/* Unified Hover Effect */
.primary-btn:hover,
.secondary-btn:hover {
    background-color: #ba7b1d;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 86, 179, 0.2);
}

/* Ensure SVG icons scale correctly */
.modern-btn svg {
    flex-shrink: 0;
}
div#customblock-make-a-submission-reviewer-reg {
    padding: 0px !important;
}