/* Category Page Styling */
.category-header {
    padding: 25px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.category-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.category-header p.lead {
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
}

/* Category software list - using same style as latest software */
.category-software-list {
    margin-bottom: 40px;
}

/* Additional styling for category software list */
.category-software-list .software-developer {
    color: #0066cc;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
}

.category-software-list .software-developer i {
    margin-right: 4px;
    font-size: 0.8rem;
}

/* Sorting and filtering options */
.category-filters {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.category-filters select {
    max-width: 200px;
    margin-right: 15px;
}

.category-filter-label {
    font-weight: 500;
    margin-right: 10px;
    color: #555;
}

/* Category pagination */
.category-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

/* Ensure responsive design */
@media (max-width: 767px) {
    .category-header h1 {
        font-size: 1.75rem;
    }
    
    .category-header p.lead {
        font-size: 1rem;
    }
    
    .category-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-filters select,
    .category-filters .btn {
        margin-top: 10px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Category software list mobile styles */
    .category-software-list .latest-software-item {
        padding: 0.8rem;
        flex-wrap: wrap;
    }
    
    .category-software-list .software-icon {
        flex: 0 0 40px;
        height: 40px;
        margin-right: 0.8rem;
    }
    
    .category-software-list .software-details {
        flex: 1 1 calc(100% - 50px);
        padding-right: 0;
    }
    
    .category-software-list .software-info {
        flex: 0 0 100%;
        margin-top: 0.8rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-top: 0.8rem;
        border-top: 1px solid rgba(0,0,0,0.05);
    }
}
