/**
 * TKD Niche Widget Styles
 */

.tkd-niche-widget {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.tkd-niche-widget h3 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.tkd-niche-widget p {
    margin: 0 0 1rem 0;
    color: #5a6c7d;
    font-size: 0.9rem;
}

.tkd-widget-search {
    margin-bottom: 1rem;
}

.tkd-widget-search form {
    display: flex;
    gap: 0.5rem;
}

.tkd-widget-search input[type="text"] {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.tkd-widget-search input[type="text"]:focus {
    outline: none;
    border-color: #4f81bd;
    box-shadow: 0 0 0 3px rgba(79, 129, 189, 0.1);
}

.tkd-widget-search button {
    padding: 0.75rem 1rem;
    background: #4f81bd;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tkd-widget-search button:hover {
    background: #3d6aa5;
}

.tkd-widget-view-all {
    display: inline-block;
    background: rgba(79, 129, 189, 0.1);
    color: #4f81bd;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tkd-widget-view-all:hover {
    background: rgba(79, 129, 189, 0.2);
    color: #3d6aa5;
    text-decoration: none;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .tkd-widget-search form {
        flex-direction: column;
    }
    
    .tkd-widget-search button {
        width: 100%;
    }
}
