/*
Theme Name: Announcer Connect
Theme URI: https://example.com
Description: アナウンサーと仕事をマッチングするカスタムテーマ
Version: 1.0
Author: Your Name
Author URI: https://example.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: announcer-theme
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Header */
.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    padding: 0 !important;
}

.site-header__inner {
    display: flex !important;
    align-items: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
}

.site-header__logo { flex-shrink: 0; }
.site-header__logo img { height: 36px; width: auto; display: block; }

.site-title,
.site-header__title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a2e;
    text-decoration: none;
    white-space: nowrap;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.site-header__nav-link {
    padding: 8px 14px;
    font-size: 14px;
    color: #334155;
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}
.site-header__nav-link:hover { background: #f1f5f9; color: #1a1a2e; }

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}

.site-header__search {
    display: flex;
    align-items: center;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
    transition: border-color 0.2s;
}
.site-header__search:focus-within { border-color: #3b82f6; background: #fff; }

.site-header__search-input {
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
    padding: 8px 12px;
    font-size: 13px;
    width: 160px;
    color: #334155;
    -webkit-appearance: none;
}
.site-header__search-input::placeholder { color: #94a3b8; }

.site-header__search-btn {
    background: none;
    border: none;
    padding: 8px 10px;
    cursor: pointer;
    color: #94a3b8;
    display: flex;
    align-items: center;
    transition: color 0.15s;
}
.site-header__search-btn:hover { color: #3b82f6; }

.site-header__inquiry-btn {
    display: inline-block;
    padding: 9px 18px;
    background: #3b82f6;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.site-header__inquiry-btn:hover { background: #2563eb; color: #fff; }

/* ハンバーガー */
.site-header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.site-header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #334155;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
.site-header__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__hamburger.active span:nth-child(2) { opacity: 0; }
.site-header__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルメニュー */
.site-header__mobile-menu {
    display: none !important;
    flex-direction: column;
    padding: 12px 24px 16px;
    border-top: 1px solid #eee;
    background: #fff;
}
.site-header__mobile-menu.open { display: flex !important; }
.site-header__mobile-menu a {
    padding: 12px 0;
    font-size: 15px;
    color: #334155;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
}
.site-header__mobile-menu a:last-child { border-bottom: none; }
.site-header__mobile-inquiry {
    margin-top: 12px;
    text-align: center;
    background: #3b82f6;
    color: #fff !important;
    padding: 12px !important;
    border-radius: 8px;
    font-weight: 600;
    border-bottom: none !important;
}

@media (max-width: 768px) {
    .site-header__nav,
    .site-header__actions { display: none; }
    .site-header__hamburger { display: flex; }
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    background: #f8f8f8;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Search Box */
.search-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

.search-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.search-field {
    position: relative;
}

.search-field label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.search-field select {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #334155;
    background: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-field select option,
.search-field select optgroup {
    background: #fff;
    font-size: 16px;
    padding: 8px;
}

.search-field select:hover {
    border-color: #93c5fd;
}

.search-field select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}

.search-button {
    width: 100%;
    padding: 16px;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.02em;
}

.search-button:hover {
    background: #2563eb;
}

/* Section */
.section {
    padding: 80px 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 14px;
    color: #666;
}

.view-all {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all:hover {
    text-decoration: underline;
}

/* Announcer Grid */
.announcer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.announcer-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    cursor: pointer;
}

.announcer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.announcer-photo {
    width: 100%;
    margin: 0 auto 20px;
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.announcer-photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.announcer-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.announcer-meta {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 15px;
}

.announcer-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.announcer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.tag {
    padding: 6px 16px;
    background: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.announcer-button {
    width: 100%;
    padding: 14px;
    background: #1a1a2e;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    display: block;
    border: none;
    cursor: pointer;
}

.announcer-button:hover {
    background: #2a2a3e;
}

/* Job Grid */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.job-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    transition: box-shadow 0.3s;
}

.job-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.job-category {
    display: inline-block;
    padding: 6px 16px;
    background: #1a1a2e;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.job-date {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.job-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.job-company {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.job-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.job-price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.job-button {
    width: 100%;
    padding: 14px;
    background: #fff;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    display: block;
    cursor: pointer;
}

.job-button:hover {
    background: #1a1a2e;
    color: #fff;
}

/* Footer */
.site-footer {
    background: #1a1a2e;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

/* Single Announcer Page */
.single-announcer {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

/* 新レイアウト: ヒーローセクション（左写真 + 右プロフィール） */
.announcer-hero {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid #e0e4ed;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
}

.announcer-hero-photo {
    width: 280px;
    height: 100%;
    min-height: 360px;
    overflow: hidden;
    flex-shrink: 0;
    background: #edf0f7;
}

.announcer-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.announcer-hero-photo .photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 360px;
    background: linear-gradient(135deg, #dde3f0 0%, #c8d0e8 100%);
}

.announcer-hero-info {
    padding: 48px 48px 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #1a1a2e;
}

.announcer-hero-name {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: #1a1a2e;
    line-height: 1.2;
}

/* 放送局・出身地・活動エリア・経験年数タグ行 */
.announcer-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.hero-tag {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.hero-tag--station {
    background: #1a1a2e;
    color: #fff;
}

.hero-tag--birthplace {
    background: #edf0f7;
    color: #1a1a2e;
    border: 1px solid #c8d0e8;
}

.hero-tag--area {
    background: #edf0f7;
    color: #1a1a2e;
    border: 1px solid #c8d0e8;
}

.hero-tag--exp {
    background: #f5f5f5;
    color: #555;
    border: 1px solid #ddd;
}

/* 仕事種別タグ行 */
.announcer-hero-jobtypes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.hero-jobtype-tag {
    padding: 4px 12px;
    background: #fff;
    border: 1px solid #1a1a2e;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #1a1a2e;
}

.announcer-hero-profile {
    font-size: 15px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 32px;
    max-width: 480px;
}

/* 旧レイアウト互換（バックアップ用）*/
.announcer-header {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 60px;
    margin-bottom: 40px;
    text-align: left;
}

.announcer-header-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    margin-bottom: 30px;
}

.announcer-header-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcer-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.announcer-header-meta {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.announcer-header-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.announcer-header-tags .tag {
    background: #1a1a2e;
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 20px;
}

.announcer-profile {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.request-button {
    display: inline-block;
    padding: 14px 36px;
    background: #1a1a2e;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    width: auto;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.request-button:hover {
    background: #2a2a3e;
}

.announcer-section {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
}

.announcer-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.career-list {
    list-style: none;
}

.career-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.career-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.career-year {
    font-weight: 600;
    color: #333;
}

.career-content {
    color: #666;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.achievement-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
}

.achievement-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.achievement-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.achievement-client {
    font-size: 13px;
    color: #999;
    margin-top: 10px;
}

/* まとめセクション */
.announcer-section--summary {
    border-left: 4px solid #1a1a2e;
}

/* Summary Box */
.summary-box {
    border: 2px solid #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
}

.summary-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1a1a2e;
    padding: 14px 20px;
}

.summary-mascot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.summary-mascot--placeholder {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.summary-box-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.summary-box-body {
    padding: 20px 24px;
    font-size: 15px;
    line-height: 1.9;
    color: #444;
}

/* Contact Form */
.contact-form {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
}

.contact-form h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.submit-button:hover {
    background: #2a2a3e;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

    .search-fields {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .search-fields .search-field label {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .search-fields .search-field select {
        padding: 9px 10px;
        font-size: 12px;
        padding-right: 28px;
        background-position: right 8px center;
    }

    .search-button {
        padding: 12px;
        font-size: 14px;
    }

    .search-box {
        padding: 20px 16px;
    }

    .announcer-grid,
    .job-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .announcer-hero {
        grid-template-columns: 1fr;
    }

    .announcer-hero-photo {
        width: 100%;
        height: 280px;
        min-height: unset;
    }

    .announcer-hero-photo .photo-placeholder {
        min-height: 280px;
    }

    .announcer-hero-info {
        padding: 28px 24px 32px;
    }

    .announcer-hero-name {
        font-size: 28px;
    }

    .announcer-header {
        padding: 30px;
        text-align: center;
    }

    .announcer-header-photo {
        margin-left: auto;
        margin-right: auto;
    }

    .announcer-header-tags {
        justify-content: center;
    }

    .career-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

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

/* =====================
   Q&A 吹き出しレイアウト
   ===================== */
.qa-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px;
    margin-top: 20px;
}

.qa-bubble {
    display: flex !important;
    align-items: flex-start !important;
    flex-direction: row !important;
    gap: 12px;
    max-width: 85%;
    width: fit-content;
}

/* Q: 左側 */
.qa-bubble--q {
    align-self: flex-start;
}

/* A: 右側 */
.qa-bubble--a {
    align-self: flex-end;
    flex-direction: row !important;
}

/* アバター */
.qa-bubble__avatar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px;
    flex-shrink: 0 !important;
    width: 68px;
}

.qa-bubble__avatar img {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    max-width: 56px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid #e0e0e0 !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

.qa-bubble__avatar-placeholder {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: #ddd;
    border: 2px solid #e0e0e0;
    flex-shrink: 0;
}

.qa-bubble__name {
    font-size: 11px;
    color: #888;
    text-align: center;
    white-space: nowrap;
    display: block;
    width: 100%;
}

/* 吹き出し本体 */
.qa-bubble__text {
    position: relative;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.7;
    background: #f0f0f0;
    flex: 1;
    min-width: 0;
}

/* Q側の吹き出し矢印（左向き）*/
.qa-bubble--q .qa-bubble__text::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 18px;
    border: 6px solid transparent;
    border-right-color: #f0f0f0;
}

/* A側の吹き出し矢印（右向き）*/
.qa-bubble--a .qa-bubble__text::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 18px;
    border: 6px solid transparent;
    border-left-color: #fff8e1;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .qa-bubble {
        max-width: 95%;
    }
    .qa-bubble__avatar img,
    .qa-bubble__avatar-placeholder {
        width: 44px;
        height: 44px;
    }
    .qa-bubble__text {
        font-size: 14px;
        padding: 10px 14px;
    }
}

/* 他のアナウンサーを探すボタン */
.back-to-top-button {
    display: inline-block;
    margin: 0 10px;
    padding: 14px 32px;
    background: #fff;
    color: var(--primary-color, #1a1a2e);
    border: 2px solid var(--primary-color, #1a1a2e);
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.back-to-top-button:hover {
    background: var(--primary-color, #1a1a2e);
    color: #fff;
}

/* 詳細ページ上部サムネイル */
.single-announcer-thumbnail {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 32px;
}
.single-announcer-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ===== カスタムセレクト ===== */
.cs-wrapper {
    position: relative;
    width: 100%;
    user-select: none;
}
.cs-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #334155;
    background: #fff;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.cs-trigger:hover { border-color: #93c5fd; }
.cs-trigger.cs-active {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.cs-trigger-text { flex: 1; }
.cs-placeholder { color: #94a3b8; }
.cs-arrow { display: flex; align-items: center; margin-left: 10px; transition: transform 0.2s; }
.cs-trigger.cs-active .cs-arrow { transform: rotate(180deg); }

.cs-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    max-height: 320px;
    overflow-y: auto;
    padding: 6px 0;
}
.cs-dropdown.cs-open { display: block; }

.cs-group-label {
    padding: 10px 18px 4px;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.08em;
}
.cs-item {
    padding: 11px 18px;
    font-size: 15px;
    color: #334155;
    cursor: pointer;
    transition: background 0.12s, color 0.12s;
    border-radius: 6px;
    margin: 0 6px;
}
.cs-item:hover { background: #eff6ff; color: #2563eb; }
.cs-item.cs-selected { background: #dbeafe; color: #1d4ed8; font-weight: 600; }
