/* === 逕ｻ髱｢蜈ｨ菴薙�險ｭ螳� === */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
}

#game-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* === 荳企Κ�壽姶髣倬�伜沺 === */
#combat-area {
    width: 100%;
    /* 笘�ｿｮ豁｣�夐ｫ倥＆繧堤判髱｢縺ｮ20%縺ｫ謌ｻ縺� */
    height: 20vh;
    /* 笘�ｿｽ蜉��壽怙菴弱〒繧�200px縺ｯ遒ｺ菫昴☆繧具ｼ域ｽｰ繧碁亟豁｢�� */
    min-height: 250px;
    flex: none;

    background-color: #f8f9fa;
    position: relative;
    box-sizing: border-box;
    border-bottom: 2px solid #ccc;
    overflow: hidden;
}

#gameCanvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* === 荳矩Κ�壹Γ繧､繝ｳ繧ｨ繝ｪ繧｢ === */
#bottom-area {
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: row;
    background-color: #ecf0f1;
}

/* --- 蟾ｦ蛛ｴ�壹Γ繝九Η繝ｼ --- */
#menu-area {
    width: 100px;
    height: 100%;
    background-color: #2c3e50;
    color: white;
    padding: 10px 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #1a252f;
    overflow-y: auto;
}

.menu-item {
    width: 90%;
    margin-bottom: 8px;
    font-size: 12px;
    cursor: pointer;
    padding: 10px 2px;
    border: 1px solid #34495e;
    text-align: center;
    background-color: #34495e;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.menu-item:hover,
.menu-item.active {
    background-color: #1abc9c;
    border-color: #16a085;
    font-weight: bold;
}

/* --- 蜿ｳ蛛ｴ�夊ｩｳ邏ｰ繧ｨ繝ｪ繧｢ --- */
#details-area {
    flex: 1;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 逕ｻ髱｢蛻�ｊ譖ｿ縺育畑 */
/* 画面切り替え用 */
/* 画面切り替え用 */
.screen-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

#screen-dungeon {
    display: none;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

.dungeon-list {
    flex: 1;
    overflow-y: auto;
    overflow-x: auto;
    /* Allow horizontal scroll */
    padding: 20px;
    display: grid;
    /* Max 5 columns, min 150px. If < 5*150px, it scrolls horizontally */
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    gap: 15px;
}

.no-dungeon-message {
    grid-column: 1 / -1;
    /* Span all columns */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #999;
    font-size: 16px;
    min-height: 200px;
    /* Ensure visibility */
}

h2 {
    margin-top: 0;
    border-bottom: 2px solid #bdc3c7;
    padding-bottom: 10px;
    color: #2c3e50;
    font-size: 20px;
}

h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #7f8c8d;
    border-left: 4px solid #1abc9c;
    padding-left: 10px;
}

/* 繧ｹ繝��繧ｿ繧ｹ逕ｻ髱｢ */
.status-row {
    margin-bottom: 8px;
    font-size: 14px;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.label {
    width: 40px;
    font-weight: bold;
}

.val-big {
    font-size: 18px;
    font-weight: bold;
}

.status-values {
    width: 250px;
    text-align: right;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 15px;
    display: inline-block;
}

.bar-container {
    flex: 1;
    max-width: 250px;
    height: 14px;
    background-color: #bdc3c7;
    border-radius: 7px;
    overflow: hidden;
    margin-left: 10px;
    border: 1px solid #95a5a6;
}

.header-stats {
    width: max-content;
    min-width: 500px;
    /* Ensure decent width */
}

.bar-fill {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease-out;
}

.hp-bar {
    background-color: #e74c3c;
}

.exp-bar {
    background-color: #3498db;
}

.highlight {
    color: #e67e22;
    font-weight: bold;
}

hr {
    margin: 15px 0;
    border: 0;
    border-top: 1px solid #bdc3c7;
}

/* 繧ｰ繝ｪ繝�ラ繝ｬ繧､繧｢繧ｦ繝� */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.stat-item,
.stat-item-read {
    background-color: white;
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.stat-item-read {
    background-color: #dfe6e9;
}

.btn-plus {
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 3px;
    width: 20px;
    height: 20px;
    font-size: 14px;
    cursor: pointer;
    margin: 0 5px;
    visibility: hidden;
}

.btn-plus.active {
    visibility: visible;
}

/* 繝繝ｳ繧ｸ繝ｧ繝ｳ逕ｻ髱｢ */
/* 繝€繝ｳ繧ｸ繝ｧ繝ｳ逕ｻ髱｢ (Removed legacy grid definition) */

.dungeon-item {
    background-color: white;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Square aspect ratio */
    aspect-ratio: 1 / 1;
    height: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.1s;
}

.dungeon-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dungeon-item.locked {
    background-color: #f2f3f4;
    opacity: 0.6;
    border-style: dashed;
}

.dungeon-item.cleared {
    border: 2px solid #f1c40f;
    background-color: #fffcf0;
}

.dungeon-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid #eee;
    padding-bottom: 4px;
    margin-bottom: 6px;
}

.dungeon-header h4 {
    margin: 0;
    font-size: 13px;
    font-weight: bold;
    color: #2c3e50;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
}

.dungeon-header .lv-label {
    font-size: 11px;
    color: #7f8c8d;
}

.dungeon-status {
    text-align: center;
    margin-bottom: auto;
}

.status-text {
    font-size: 12px;
    font-weight: bold;
    color: #555;
}

.dungeon-item button {
    margin-top: 8px;
    padding: 5px 0;
    font-size: 12px;
    border-radius: 3px;
    background-color: #3498db;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
}

.dungeon-item button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

/* 繝ｭ繧ｰ繧､繝ｳ逕ｻ髱｢ */
#login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.login-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    width: 340px;
    text-align: center;
}

.login-logo {
    max-width: 260px;
    /* 繝懊ャ繧ｯ繧ｹ蟷�↓蜷医ｏ縺帙※隱ｿ謨ｴ */
    height: auto;
    margin-bottom: 20px;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    /* 霑ｽ蜉�: 繝代ョ繧｣繝ｳ繧ｰ繧貞性繧√※100%縺ｫ縺吶ｋ */
}

.login-box button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    box-sizing: border-box;
    /* 霑ｽ蜉�: 繝代ョ繧｣繝ｳ繧ｰ繧貞性繧√※100%縺ｫ縺吶ｋ */
}

.login-box button.secondary {
    background-color: #95a5a6;
    margin-top: 5px;
}

.error-msg {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 10px;
}

.hidden {
    display: none !important;
}

/* 陬�ｙ逕ｻ髱｢ V2 */
.equipment-v2-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
    height: 750px;
    /* 蟾ｦ蛻�(14繧ｹ繝ｭ繝�ヨ)縺御ｽ呵｣輔〒蜿弱∪繧矩ｫ倥＆ */
    /* 蝗ｺ螳夐ｫ倥＆縺ｧ繧ｹ繧ｯ繝ｭ繝ｼ繝ｫ縺輔○繧� */
}

.equip-col {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    border: 1px solid #bdc3c7;
    min-height: 0;
    /* 繧ｹ繧ｯ繝ｭ繝ｼ繝ｫ縺輔○繧九◆繧√↓蠢��� */
}

.equip-col h3 {
    font-size: 14px;
    margin: 0 0 10px 0;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.vertical-slots,
.vertical-items {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 蟾ｦ蛻励�繧ｹ繧ｯ繝ｭ繝ｼ繝ｫ縺輔○縺ｪ縺�ｼ磯ｫ倥＆蜊∝�遒ｺ菫晏燕謠撰ｼ� */
#current-slots-list {
    overflow-y: hidden;
}

/* 繧ｹ繝ｭ繝�ヨ繧｢繧､繝�Β縺ｮ繧ｹ繧ｿ繧､繝ｫ */
.equip-slot-row {
    display: flex;
    align-items: center;
    background: white;
    padding: 6px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.equip-slot-row:hover {
    background-color: #f0f7ff;
}

.equip-slot-row.selected {
    border-color: #3498db;
    background-color: #ebf5fb;
}

.slot-name-label {
    width: 60px;
    font-size: 11px;
    color: #7f8c8d;
    font-weight: bold;
}

.slot-item-name {
    flex: 1;
    font-weight: bold;
    color: #2c3e50;
}

/* 蛟呵｣懊い繧､繝Β縺ｮ繧ｹ繧ｿ繧､繝ｫ */
.candidate-item-row {
    padding: 8px;
    background: white;
    border-radius: 4px;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 12px;
    position: relative;
    transition: all 0.2s;
}

.candidate-item-row:hover {
    border-color: #3498db;
    transform: translateX(3px);
}

.candidate-item-row.selected {
    background-color: #e8f4fd;
    border-color: #3498db;
    border-width: 2px;
}

/* 繧ｴ繝溽ｮｱ繝懊ち繝ｳ (繝帙ヰ繝ｼ譎ゅ�縺ｿ陦ｨ遉ｺ) */
.delete-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 3px;
    width: 24px;
    height: 24px;
    font-size: 14px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.candidate-item-row:hover .delete-btn {
    display: flex;
}

.delete-btn:hover {
    background-color: #c0392b;
}

/* 繧ｹ繝��繧ｿ繧ｹ豈碑ｼ��繝�け繧ｹ */
.comparison-box {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 15px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    flex: 1;
}

.comp-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    font-size: 14px;
}

.comp-row div {
    display: flex;
    gap: 5px;
    min-width: 100px;
    justify-content: flex-end;
}

[id^="curr-"] {
    color: #bdc3c7;
    font-size: 13px;
    width: 40px;
    text-align: right;
    display: inline-block;
}

[id^="diff-"] {
    width: 45px;
    text-align: left;
    display: inline-block;
}

.diff-plus {
    color: #2ecc71;
    font-weight: bold;
}

.diff-minus {
    color: #e74c3c;
    font-weight: bold;
}

.diff-zero {
    color: #95a5a6;
}

.confirm-btn {
    margin-top: 10px;
    padding: 10px;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.confirm-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}



.empty-msg {
    text-align: center;
    color: #95a5a6;
    font-size: 12px;
    margin-top: 20px;
}

/* 陬�ｙ逕ｻ髱｢ */
.equipment-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.equipment-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.slot-item {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 6px;
    border-radius: 4px;
}

.slot-item label {
    display: block;
    font-size: 11px;
    color: #666;
    margin-bottom: 2px;
}

.slot-box {
    height: 40px;
    background-color: #fff;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.slot-box:hover {
    border-color: #3498db;
    background-color: #f7fbfe;
}

.equipment-inventory {
    display: flex;
    flex-direction: column;
}

.inventory-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    grid-auto-rows: 50px;
    gap: 8px;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.03);
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    overflow-y: auto;
    max-height: 450px;
}

/* 繝ｬ繧｢繝ｪ繝�ぅ繧ｫ繝ｩ繝ｼ (莉墓ｧ俶嶌) */
.rank-white {
    border-color: #fff;
}

.rank-green {
    border-color: #2ecc71;
}

.rank-blue {
    border-color: #3498db;
}

.rank-purple {
    border-color: #9b59b6;
}

.rank-orange {
    border-color: #f39c12;
}

.rank-red {
    border-color: #e74c3c;
}

.rank-cyan {
    border-color: #00cec9;
}

.rank-brown {
    border-color: #8d6e63;
}

.inventory-item {
    background-color: #fff;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.inventory-item:hover {
    border-color: #3498db;
    transform: scale(1.05);
}

.rank-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
}

.rank-dot.rank-1 {
    background-color: #fff;
    border: 1px solid #ccc;
}

.rank-dot.rank-2 {
    background-color: #2ecc71;
}

.rank-dot.rank-3 {
    background-color: #3498db;
}

.rank-dot.rank-4 {
    background-color: #9b59b6;
}

.rank-dot.rank-5 {
    background-color: #f39c12;
}

.rank-dot.rank-6 {
    background-color: #e74c3c;
}

.rank-dot.rank-7 {
    background-color: #00cec9;
}

/* 繧ｪ繝ｼ繝舌�繝ｬ繧､縺ｨ繝繧､繧｢繝ｭ繧ｰ */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2500;
}

.dialog-box {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.result-row {
    margin: 10px 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

/* 謌ｦ髣倥Ο繧ｰ */
#combat-log {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 200px;
    max-height: 120px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 12px;
    padding: 5px;
    border-radius: 4px;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    z-index: 20;
}

.log-entry {
    margin-bottom: 2px;
    animation: fade-in 0.3s ease-out;
    text-shadow: 1px 1px 1px #000;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* タブ共通 */
.dungeon-tabs,
.story-tabs {
    display: flex;
    width: 100%;
    margin-bottom: 0;
    border-bottom: 2px solid #ddd;
    background-color: #f8f8f8;
    /* Add background to stand out */
}

.tab-btn {
    flex: 1;
    padding: 10px;
    background-color: #f1f1f1;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: bold;
    color: #777;
    transition: 0.3s;
    border-radius: 5px 5px 0 0;
    margin-right: 2px;
}

.tab-btn:hover {
    background-color: #ddd;
}

.tab-btn.active {
    background-color: #3498db;
    color: white;
}

.adv-popup-window {
    width: 1280px;
    height: 720px;
    background: #000;
    position: relative;
    border: 4px solid #34495e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.adv-window {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    /* ポップアップ幅に合わせて拡大 */
    height: 160px;
    /* 高さも少し調整 */
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 20px 30px;
    color: #fff;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 110;
}

.adv-name-tag {
    position: absolute;
    top: -30px;
    left: 20px;
    background: #3498db;
    padding: 4px 20px;
    border-radius: 8px 8px 0 0;
    font-weight: bold;
    font-size: 14px;
    border: 2px solid #fff;
    border-bottom: none;
}

.adv-msg-text {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

.adv-next-arrow {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 12px;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* スキル強化ボタン */
.btn-skill-enhance {
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 15px;
    font-size: 12px;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
    width: auto;
    height: auto;
    visibility: visible;
}

.btn-skill-enhance:hover {
    background-color: #2980b9;
}


/* 戦闘画面：スキルアイコン・クールタイム表示 */
#combat-skill-container {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    z-index: 20;
    /* キャンバスより上 */
}

.combat-skill-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    /* 絵文字アイコンサイズ */
    color: white;
    cursor: default;
    /* クリック不可（自動発動） */
    overflow: hidden;
    transition: transform 0.1s;
}

.combat-skill-icon.active {
    border-color: #f1c40f;
    box-shadow: 0 0 5px rgba(241, 196, 15, 0.5);
    transform: scale(1.1);
}

.cooldown-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    /* 0% = 完了, 100% = クールダウン開始時 */
    background-color: rgba(0, 0, 0, 0.7);
    transition: height 0.1s linear;
    /* JSで随時更新するのでlinear */
}

/* スキルリスト画面 */
.skill-item {
    display: flex;
    align-items: stretch;
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 500px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.1s;
}

.skill-item.equipped {
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

.skill-icon-box {
    width: 80px;
    min-height: 80px;
    background-color: #f1f2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-right: 1px solid #eee;
    flex-shrink: 0;
}

.skill-details {
    flex: 1;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    min-height: 80px;
}

.skill-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.skill-name {
    font-size: 15px;
}

.skill-desc {
    font-size: 12px;
    line-height: 1.4;
    word-break: break-all;
}

/* スキル設定画面のスロット */
.skill-slot {
    width: 50px;
    height: 50px;
    border: 2px dashed #bdc3c7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: all 0.2s;
}

.skill-slot.filled {
    border: 2px solid #3498db;
    background-color: #fff;
    border-style: solid;
}

.skill-slot.empty:hover {
    border-color: #3498db;
    background-color: #ecf0f1;
}

.plus-mark {
    font-size: 24px;
    color: #bdc3c7;
    pointer-events: none;
}

.skill-slot-content {
    width: 100%;
    height: 100%;
}.job-cat-btn {
    padding: 12px 15px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s;
    color: #495057;
}

.job-cat-btn:hover {
    background: #e9ecef;
}

.job-cat-btn.active {
    background: #3498db;
    color: white;
    border-color: #2980b9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.job-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
