/* css/skills.css */

/* Skills display */
.skills-container {
    margin-top: 20px;
}

.skills-summary {
    margin-bottom: 20px;
    font-size: 16px;
}

.skill-category {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.skill-category-title {
    background-color: #f5f5f5;
    padding: 10px 15px;
    margin: 0;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-category-title .badge {
    background-color: #337ab7;
    color: white;
    padding: 3px 7px;
    border-radius: 10px;
    font-size: 12px;
}

.skill-items {
    padding: 0 15px;
}

.skill-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-item:last-child {
    border-bottom: none;
}

.skill-name {
    flex: 2;
    font-weight: 500;
}

.skill-level {
    flex: 1;
    text-align: center;
}

.skill-points {
    flex: 1;
    text-align: right;
    color: #777;
    font-size: 14px;
}

.loading-indicator {
    padding: 20px;
    text-align: center;
    font-style: italic;
    color: #777;
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
    text-decoration: none;
}

.btn-primary:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
}

#skill-search {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}