/* Horoscope Top Bar Widget */
.horoscope-topbar-widget {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.horoscope-topbar-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.horoscope-topbar-icon {
    font-size: 18px;
}

.horoscope-topbar-text {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Horoscope Selector Dropdown */
.horoscope-topbar-selector {
    position: absolute;
    top: 50px;
    right: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    padding: 25px;
    z-index: 9999;
    min-width: 400px;
}

.horoscope-selector-inner h4 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.horoscope-signs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.horoscope-sign-option {
    padding: 15px 10px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.horoscope-sign-option:hover {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-color: #667eea;
    transform: translateY(-3px);
}

.horoscope-sign-option .sign-symbol {
    display: block;
    font-size: 28px;
    margin-bottom: 5px;
}

.horoscope-sign-option .sign-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .horoscope-topbar-text {
        max-width: 150px;
    }
    
    .horoscope-topbar-selector {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
    
    .horoscope-signs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
