/* Skills UI (index) */
#skills-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 25px;
}

.skills-instruction {
    color: #6b6b6b;
    font-size: 14px;
}

.skills-ui {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.skills-category {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 220px;
}

.skills-category-button {
    background: white;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12); */
    /* outline: 2px solid black; */
    background-color: var(--COLOR-1);
    color: black;
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
}


.skills-category-button {
    -webkit-appearance: none;
    appearance: none;
    border: 2px solid rgba(0, 0, 0, 0.651);
    background-clip: padding-box;
    transition: border-color 120ms ease, box-shadow 120ms ease;
}

.skills-category-button:hover {
    /* keep hover subtle and consistent */
    border-color: rgb(0, 0, 0);
}

.skills-category-button:focus {
    outline: none;
}

.skills-category-button:focus-visible {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
}

.skills-dropdown {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-radius: 6px;
}

.skills-dropdown.open {
    display: flex;
}

.skills-link {
    font-size: 15px;
    color: inherit;
    text-decoration: none;
    padding: 8px 10px;
    display: block;
    border-radius: 6px;
    border: 2px solid black;
    background: var(--COLOR-2);
}

/* Project skill pills */
.project-skills,
.project-card-skills {
    display: flex;
    gap: 10px;
    margin: 12px 0;
    flex-wrap: wrap;
}

.skill-pill {
    background: var(--COLOR-2);
    outline: 2px solid black;
    color: black;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}