:root {
    --bg: #f4f7f9;
    --panel: #ffffff;
    --text: #102236;
    --muted: #51677f;
    --line: #d8e2ea;
    --brand: #005596;
    --brand-2: #008b80;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    color: var(--text);
    font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
    background:
        radial-gradient(circle at 10% 10%, rgba(0, 139, 128, 0.08), transparent 42%),
        radial-gradient(circle at 90% 2%, rgba(0, 85, 150, 0.08), transparent 38%),
        var(--bg);
}

a {
    color: var(--brand);
    text-decoration: none;
}

a:hover { text-decoration: underline; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.header-inner,
.footer-inner,
.container,
.hero-inner,
.breadcrumb-wrap {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.header-inner {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
}

.brand {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.top-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.top-nav a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 14px;
}

.top-nav a.active,
.top-nav a:hover {
    background: #e7f2fa;
    color: var(--brand);
    text-decoration: none;
}

.hero {
    padding: 40px 0 24px;
}

.hero-inner {
    background: linear-gradient(120deg, #053f6e, #086d92 55%, #0a8f88);
    color: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(5, 63, 110, 0.22);
}

.hero .eyebrow {
    margin: 0;
    opacity: 0.9;
    letter-spacing: 0.08em;
    font-size: 12px;
    text-transform: uppercase;
}

.hero h1 {
    margin: 10px 0 6px;
    font-size: clamp(26px, 5vw, 40px);
}

.route-code {
    margin: 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 13px;
    opacity: 0.92;
}

.breadcrumb-wrap {
    margin: 8px auto 16px;
}

.breadcrumbs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumbs li::after {
    content: ">";
    margin-left: 8px;
    color: #9aa8b4;
}

.breadcrumbs li:last-child::after { content: ""; }

.container {
    padding-bottom: 56px;
}

.content-block {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 10px 24px rgba(30, 55, 79, 0.06);
}

.content-block h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
}

.block-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.reload-button {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 10px;
    padding: 8px 10px;
    cursor: pointer;
}

.feed,
.reservation-board {
    display: grid;
    gap: 10px;
}

.feed-item,
.reservation-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    background: #fbfdff;
}

.feed-item.has-thumb {
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 12px;
    align-items: start;
}

.feed-item .feed-thumb {
    display: block;
    width: 116px;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #eef4f9;
}

.feed-item .feed-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-item .feed-body {
    min-width: 0;
}

.feed-item .meta,
.reservation-item .meta {
    color: var(--muted);
    font-size: 13px;
}

.feed-empty {
    margin: 0;
    color: var(--muted);
}

.reservation-calendar {
    display: grid;
    gap: 12px;
}

.reservation-calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.reservation-month-label {
    font-size: 18px;
    letter-spacing: -0.01em;
}

.calendar-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    border-radius: 999px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.calendar-nav:hover {
    border-color: #9fc2da;
    color: #0f5d9a;
}

.reservation-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.reservation-weekdays span {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
}

.reservation-days-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.reservation-day {
    position: relative;
    display: block;
    width: 100%;
    min-height: 96px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    padding: 8px 8px 6px;
    text-align: left;
    color: var(--text);
    cursor: pointer;
}

.reservation-day:hover {
    border-color: #9fc2da;
}

.reservation-day.is-outside {
    background: #f7fafc;
    color: #97a8b7;
}

.reservation-day.has-events {
    background: #f3f9fe;
    border-color: #b8d7ee;
}

.reservation-day.is-selected {
    border-color: #1a6aa3;
    box-shadow: inset 0 0 0 1px #1a6aa3;
}

.reservation-day-num {
    font-weight: 700;
    font-size: 13px;
}

.reservation-day-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    display: inline-flex;
    min-width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 6px;
    background: #1a6aa3;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.reservation-day-preview {
    margin-top: 6px;
    display: grid;
    gap: 4px;
}

.reservation-chip {
    display: block;
    width: 100%;
    font-size: 11px;
    line-height: 1.3;
    background: #e6f1f9;
    border-radius: 6px;
    padding: 3px 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reservation-day-panel {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fbfdff;
    padding: 12px;
}

.reservation-day-panel h3 {
    margin: 0 0 4px;
    font-size: 16px;
}

.reservation-day-list {
    display: grid;
    gap: 8px;
    margin-top: 8px;
}

.calendar-skeleton {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-skeleton div {
    height: 14px;
    border-radius: 8px;
    background: linear-gradient(90deg, #e5edf3, #f3f7fa, #e5edf3);
    background-size: 200% 100%;
    animation: pulse 1.5s infinite linear;
}

@keyframes pulse {
    0% { background-position: 0 0; }
    100% { background-position: 200% 0; }
}

.link-grid,
.source-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.link-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.link-grid a {
    display: block;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    background: #f9fcff;
    min-height: 76px;
}

.link-grid strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
}

.link-grid span {
    color: var(--muted);
    font-size: 12px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.source-content-block .block-head {
    margin-bottom: 16px;
}

.source-origin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    background: #fff;
}

.source-origin-link:hover {
    color: #0f5d9a;
    border-color: #c6dff0;
}

.source-content {
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
}

.source-content > *:first-child {
    margin-top: 0;
}

.source-content h1,
.source-content h2,
.source-content h3,
.source-content h4,
.source-content h5,
.source-content h6 {
    margin: 0 0 12px;
    line-height: 1.4;
}

.source-content p,
.source-content ul,
.source-content ol,
.source-content table,
.source-content blockquote {
    margin: 0 0 14px;
}

.source-content ul,
.source-content ol {
    padding-left: 20px;
}

.source-content img {
    display: block;
    max-width: 100%;
    height: auto;
}

.source-content iframe,
.source-content video {
    max-width: 100%;
}

.source-content table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
}

.source-content a {
    color: #0f5d9a;
}

.ee-seminar-reservation {
    display: grid;
    gap: 16px;
}

.ee-seminar-reservation .tab_box {
    margin-bottom: 0;
}

.ee-seminar-reservation .seminar-head h2 {
    margin: 0 0 6px;
}

.ee-seminar-reservation .seminar-head p {
    margin: 0;
    color: var(--muted);
}

.seminar-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
}

.seminar-form {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fbfdff;
    padding: 14px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seminar-form .form-row {
    display: grid;
    gap: 6px;
}

.seminar-form .form-row.full {
    grid-column: 1 / -1;
}

.seminar-form label {
    font-size: 13px;
    color: var(--muted);
}

.seminar-form input,
.seminar-form select,
.seminar-form textarea {
    width: 100%;
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 14px;
    color: var(--text);
    background: #fff;
}

.seminar-form textarea {
    min-height: 72px;
    resize: vertical;
}

.seminar-form input:focus,
.seminar-form select:focus,
.seminar-form textarea:focus {
    outline: none;
    border-color: #7bb0d4;
    box-shadow: 0 0 0 3px rgba(15, 93, 154, 0.14);
}

.seminar-form .verify-block,
.equipment-form .verify-block {
    border: 1px solid #c8d8e8;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fbff 0%, #fdfefe 100%);
    padding: 14px;
    gap: 12px;
}

.verify-block-head {
    display: grid;
    gap: 4px;
}

.verify-block-head strong {
    font-size: 14px;
    color: var(--text);
}

.verify-block-head p {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
}

.verify-block-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.verify-field {
    display: grid;
    gap: 6px;
}

.verify-input-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.verify-input-row input {
    flex: 1;
    min-width: 0;
}

.verify-action {
    min-width: 118px;
    border: 1px solid #0f5d9a;
    border-radius: 10px;
    background: #0f5d9a;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 0 14px;
}

.verify-action:hover {
    background: #0c4f85;
    border-color: #0c4f85;
}

.verify-action.secondary {
    background: #fff;
    color: #0f5d9a;
}

.verify-action.secondary:hover {
    background: #eef6fc;
}

.verify-action:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.verify-status {
    margin: 0;
    font-size: 13px;
}

.verify-status.is-error {
    color: #b42318;
}

.verify-status.is-success {
    color: #067647;
}

.verify-block.is-verified {
    border-color: #9ed9b0;
    background: linear-gradient(180deg, #f5fff8 0%, #fbfffd 100%);
}

.seminar-submit {
    min-height: 42px;
    border: 1px solid #0f5d9a;
    border-radius: 10px;
    padding: 0 14px;
    background: #0f5d9a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.seminar-submit:hover {
    background: #0c4f85;
    border-color: #0c4f85;
}

.seminar-submit:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.seminar-message {
    margin: 0;
    font-size: 13px;
}

.seminar-message.is-error {
    color: #b42318;
}

.seminar-message.is-success {
    color: #067647;
}

.seminar-side {
    display: grid;
    gap: 14px;
}

.seminar-room-panel,
.seminar-slot-panel {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fbfdff;
    padding: 14px;
    display: grid;
    gap: 10px;
}

.seminar-room-panel h3,
.seminar-slot-panel h3 {
    margin: 0;
    font-size: 16px;
}

.seminar-room-guide {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.seminar-room-meta {
    margin: 0;
    display: grid;
    gap: 6px;
}

.seminar-room-meta > div {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 8px;
    align-items: start;
}

.seminar-room-meta > div.full {
    grid-template-columns: 1fr;
}

.seminar-room-meta dt {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
}

.seminar-room-meta dd {
    margin: 0;
    font-size: 14px;
    color: var(--text);
    white-space: pre-wrap;
}

.seminar-slot-summary {
    font-size: 13px;
    color: var(--muted);
}

.seminar-slot-list-wrap {
    overflow-x: auto;
}

.seminar-slot-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.seminar-slot-table th,
.seminar-slot-table td {
    border-bottom: 1px solid var(--line);
    padding: 8px 6px;
    text-align: left;
}

.seminar-slot-table th {
    color: var(--muted);
    font-weight: 600;
    background: #f7fbff;
}

.seminar-slot-table tbody tr:last-child td {
    border-bottom: none;
}

.ee-equipment-reservation {
    display: grid;
    gap: 16px;
}

.ee-equipment-reservation .tab_box {
    margin-bottom: 0;
}

.ee-equipment-reservation .equipment-head h2 {
    margin: 0 0 6px;
}

.ee-equipment-reservation .equipment-head p {
    margin: 0;
    color: var(--muted);
}

.equipment-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
}

.equipment-form {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fbfdff;
    padding: 14px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.equipment-form .form-row {
    display: grid;
    gap: 6px;
}

.equipment-form .form-row.full {
    grid-column: 1 / -1;
}

.equipment-form label {
    font-size: 13px;
    color: var(--muted);
}

.equipment-form input,
.equipment-form select,
.equipment-form textarea {
    width: 100%;
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 14px;
    color: var(--text);
    background: #fff;
}

.equipment-form textarea {
    min-height: 72px;
    resize: vertical;
}

.equipment-form input:focus,
.equipment-form select:focus,
.equipment-form textarea:focus {
    outline: none;
    border-color: #7bb0d4;
    box-shadow: 0 0 0 3px rgba(15, 93, 154, 0.14);
}

.equipment-submit {
    min-height: 42px;
    border: 1px solid #0f5d9a;
    border-radius: 10px;
    padding: 0 14px;
    background: #0f5d9a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.equipment-submit:hover {
    background: #0c4f85;
    border-color: #0c4f85;
}

.equipment-submit:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.equipment-message {
    margin: 0;
    font-size: 13px;
}

.equipment-message.is-error {
    color: #b42318;
}

.equipment-message.is-success {
    color: #067647;
}

.equipment-slot-panel {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fbfdff;
    padding: 14px;
    display: grid;
    gap: 10px;
}

.equipment-slot-panel h3 {
    margin: 0;
    font-size: 16px;
}

.equipment-slot-summary {
    font-size: 13px;
    color: var(--muted);
}

.equipment-slot-list-wrap {
    overflow-x: auto;
}

.equipment-slot-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.equipment-slot-table th,
.equipment-slot-table td {
    border-bottom: 1px solid var(--line);
    padding: 8px 6px;
    text-align: left;
}

.equipment-slot-table th {
    color: var(--muted);
    font-weight: 600;
    background: #f7fbff;
}

.equipment-slot-table tbody tr:last-child td {
    border-bottom: none;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer-inner {
    padding: 20px 0 32px;
    color: var(--muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }

    .top-nav ul {
        justify-content: flex-start;
    }

    .hero {
        padding-top: 24px;
    }

    .content-block {
        padding: 16px;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .equipment-form {
        grid-template-columns: 1fr;
    }

    .seminar-grid {
        grid-template-columns: 1fr;
    }

    .seminar-form {
        grid-template-columns: 1fr;
    }

    .verify-block-grid {
        grid-template-columns: 1fr;
    }

    .verify-input-row {
        flex-direction: column;
    }

    .verify-action {
        min-height: 40px;
    }

    .feed-item.has-thumb {
        grid-template-columns: 1fr;
    }

    .feed-item .feed-thumb {
        width: 100%;
        max-width: 240px;
    }

    .reservation-day {
        min-height: 74px;
        padding: 6px 6px 5px;
    }

    .reservation-chip {
        font-size: 10px;
        padding: 2px 4px;
    }
}

.history-block {
    overflow: hidden;
}

.history-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.history-subtitle {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.history-range-tabs {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.history-range-tabs button {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 600;
}

.history-range-tabs button.active {
    border-color: var(--brand);
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.history-carousel {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
    align-items: center;
}

.history-control {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: #35526d;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.history-control:disabled {
    opacity: 0.45;
    cursor: default;
}

.history-slides {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f7fbff;
    overflow: hidden;
    min-height: 300px;
}

.history-slide {
    display: none;
    margin: 0;
}

.history-slide.is-active {
    display: block;
}

.history-slide img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.history-caption {
    margin: 8px 2px 0;
    color: var(--muted);
    font-size: 13px;
}

.history-events {
    margin-top: 18px;
}

.history-events-title {
    margin: 0 0 10px;
    font-size: 18px;
}

.history-year-group + .history-year-group {
    margin-top: 16px;
}

.history-year-group h4 {
    margin: 0 0 8px;
    font-size: 24px;
    color: #314b63;
    border-bottom: 1px solid var(--line);
    padding-bottom: 6px;
}

.history-year-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.history-year-group li {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 12px;
    background: #fbfdff;
}

.history-item-head {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.history-date {
    color: #637f98;
    font-size: 12px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.history-description {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .history-carousel {
        grid-template-columns: 36px 1fr 36px;
    }

    .history-control {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .history-slides {
        min-height: 220px;
    }

    .history-slide img {
        height: 220px;
    }
}

/* --- Equipment Reservation Grid & Modal styles --- */
.equipment-search-bar { display: flex; max-width: 400px; margin-left: auto; margin-bottom: 20px; position: relative; }
.equipment-search-bar input { width: 100%; padding: 10px 40px 10px 15px; border: 1px solid #ccc; border-radius: 4px; font-size: 14px; }
.equipment-search-bar button { position: absolute; right: 5px; top: 5px; background: none; border: none; padding: 5px; cursor: pointer; color: #666; }

.equipment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
@media (max-width: 1024px) { .equipment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .equipment-grid { grid-template-columns: 1fr; } }

.equipment-card { border: 1px solid #e5e7eb; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; background: #fff; transition: transform 0.2s, box-shadow 0.2s; }
.equipment-card:hover { transform: translateY(-4px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.card-image { width: 100%; padding-top: 60%; position: relative; background: #f9fafb; border-bottom: 1px solid #e5e7eb; }
.card-image img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.card-image .no-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #cbd5e1; }
.card-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.card-title { font-size: 16px; font-weight: 700; margin: 0 0 10px; color: #111827; line-height: 1.4; }
.card-specs { font-size: 13px; color: #6b7280; margin-bottom: 15px; flex-grow: 1; }
.card-status { font-size: 13px; font-weight: 600; color: #059669; margin-bottom: 15px; }
.btn-reserve { display: block; width: 100%; padding: 10px; background: #fff; border: 1px solid #c02a5c; color: #c02a5c; border-radius: 4px; font-weight: 600; text-align: center; cursor: pointer; transition: all 0.2s; }
.btn-reserve:hover { background: #c02a5c; color: #fff; }

/* Modal Styles */
.equipment-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s; }
.equipment-modal.is-open { opacity: 1; visibility: visible; }
.equipment-modal-backdrop { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
.equipment-modal-content { position: relative; background: #fff; width: 90%; max-width: 600px; max-height: 90vh; overflow-y: auto; border-radius: 8px; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); display: flex; flex-direction: column; }
.equipment-modal-header { padding: 20px 24px; border-bottom: 1px solid #e5e7eb; display: flex; justify-content: space-between; align-items: center; }
.equipment-modal-header h3 { margin: 0; font-size: 20px; font-weight: 700; }
.equipment-modal-close { background: none; border: none; font-size: 24px; cursor: pointer; color: #9ca3af; padding: 0; line-height: 1; transition: color 0.2s; }
.equipment-modal-close:hover { color: #111827; }
.equipment-modal-body { padding: 24px; overflow-y: auto; }
.equipment-modal-notice { font-size: 14px; color: #6b7280; margin-bottom: 24px; line-height: 1.5; background: #f9fafb; padding: 16px; border-radius: 6px; }
.equipment-modal-notice strong { color: #dc2626; }

/* Form field tweaks */
.equipment-form .form-row-group { display: flex; gap: 16px; margin-bottom: 16px; }
.equipment-form .form-row-group .half { width: 50%; }
.equipment-form .password-group { margin-top: 16px; }
.equipment-form .auth-period { display: flex; gap: 10px; align-items: center; margin-top: 5px; }
.equipment-form .auth-period > div { flex: 1; display: flex; flex-direction: column; }
.equipment-form .auth-period span.sub-label { font-size: 12px; color: #666; margin-bottom: 4px; }
.equipment-form .submit-row { margin-top: 30px; text-align: center; }
.equipment-form .equipment-submit { width: auto; min-width: 200px; padding: 12px 32px; background: #c02a5c; color: #fff; border: none; border-radius: 4px; font-size: 16px; font-weight: 600; cursor: pointer; }
.equipment-form label { display: block; margin-bottom: 8px; font-weight: 600; color: #374151; font-size: 14px; }
.equipment-form label span { color: #dc2626; }
.equipment-form input[type="text"], .equipment-form input[type="email"], .equipment-form input[type="password"], .equipment-form input[type="date"] { width: 100%; border: 1px solid #d1d5db; padding: 10px 12px; border-radius: 4px; font-size: 14px; }
.verify-input-row { display: flex; gap: 8px; align-items: center; }
.verify-input-row .email-suffix { color: #6b7280; font-size: 14px; white-space: nowrap; }
.verify-action { padding: 10px 16px; background: #fff; border: 1px solid #d1d5db; border-radius: 4px; cursor: pointer; white-space: nowrap; font-size: 14px; color: #374151; }
.verify-action:hover { background: #f3f4f6; }
.verify-block { border: 1px solid #e5e7eb; border-radius: 8px; padding: 20px; background: #f9fafb; margin-bottom: 24px; }
.verify-block-head { margin-bottom: 16px; }
.verify-block-head strong { font-size: 15px; color: #111827; display: block; }
