/**
 * Directory Attributes CSS
 * Styles for displaying attributes in the directory item sidebar
 */

.attributes-container {
    margin-bottom: 20px;
}

.attribute-category {
    margin-bottom: 15px;
}

.category-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.attributes-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.attributes-list li {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    align-items: baseline;
}

.attributes-list li i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.text-success {
    color: #28a745;
}

.text-danger {
    color: #dc3545;
}

.attribute-name {
    font-weight: 500;
    margin-right: 5px;
}

.attribute-value {
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .attributes-container {
        margin-bottom: 15px;
    }
    
    .category-title {
        font-size: 15px;
    }
    
    .attributes-list li {
        font-size: 13px;
    }
}
