/* DirectoryPress Fixed Categories Widget Styles */

.directorypress-fixed-categories-wrapper {
    width: 100%;
}

.directorypress-categories-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.directorypress-fixed-category-item {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.directorypress-fixed-category-item:hover {
    border-color: #999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-icon {
    margin-bottom: 10px;
    text-align: center;
    font-size: 36px;
    color: #333;
}

.category-icon-img {
    max-width: 60px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.category-content {
    text-align: center;
}

.category-title {
    margin: 10px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.category-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.category-title a:hover {
    color: #0073aa;
}

.category-count {
    font-size: 12px;
    color: #666;
    margin-left: 5px;
}

.category-children {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    text-align: left;
}

.category-children-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-children-list li {
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

.category-children-list li:last-child {
    border-bottom: none;
}

.category-children-list a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.category-children-list a:hover {
    color: #0073aa;
    padding-left: 5px;
}

.directorypress-fixed-categories-empty {
    padding: 20px;
    text-align: center;
    color: #666;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .directorypress-fixed-category-item {
        padding: 12px;
    }

    .category-title {
        font-size: 14px;
    }

    .category-icon {
        font-size: 28px;
    }

    .category-children-list a {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .directorypress-categories-grid {
        gap: 10px;
    }

    .directorypress-fixed-category-item {
        padding: 10px;
    }

    .category-title {
        font-size: 12px;
        margin: 5px 0;
    }

    .category-icon {
        font-size: 24px;
        margin-bottom: 5px;
    }
}
