/* docs/skills.css */

.skills-container {
    padding: 20px;
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-name {
    font-weight: 500;
    color: #232f3e;
    flex: 1;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.skill-bar-container {
    background-color: #e9ecef; /* The grey background for the full bar */
    border-radius: 4px;
    height: 10px;
    width: 250px;
    display: flex; /* NEW: Use flexbox to align the two colored bars */
}

.skill-bar-basic {
    background-color: #ff9900; /* Amazon's orange */
    height: 100%;
    border-radius: 4px; /* We'll handle the rounding in the `skill-bar-container` */
    transition: width 0.5s ease-in-out;
}

.skill-bar-preferred {
    background-color: #ffd700; /* A yellowish-gold color */
    height: 100%;
    border-radius: 4px; /* We'll handle the rounding in the `skill-bar-container` */
    transition: width 0.5s ease-in-out;
}

.skill-percentage {
    font-size: 14px;
    color: #6c757d;
    text-align: right;
    width: 50px;
    min-width: 50px;
}

.skills-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.skills-pagination button {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
}

.skills-pagination button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.skills-pagination .hidden {
    display: none;
}
