/* AiStros DeepSeek Horoscopes - Frontend Styles */

.deepseek-horoscope-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.deepseek-horoscope-widget h3 {
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 20px;
}

.deepseek-form-group {
    margin-bottom: 20px;
}

.deepseek-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.deepseek-form-group input,
.deepseek-form-group select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

.deepseek-form-group input:focus,
.deepseek-form-group select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.deepseek-button {
    background: white;
    color: #667eea;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deepseek-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.deepseek-button:active {
    transform: translateY(0);
}

.deepseek-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.deepseek-result {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: none;
}

.deepseek-result.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.deepseek-result h3 {
    color: #667eea;
    margin-top: 0;
    font-size: 20px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.deepseek-result-item {
    margin-bottom: 20px;
}

.deepseek-result-item strong {
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.deepseek-result-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.deepseek-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.deepseek-keyword {
    background: #667eea;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.deepseek-error {
    background: #fee;
    color: #c00;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #c00;
    margin-top: 15px;
    display: none;
}

.deepseek-error.show {
    display: block;
}

.deepseek-loading {
    text-align: center;
    padding: 20px;
    display: none;
}

.deepseek-loading.show {
    display: block;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .deepseek-horoscope-widget {
        padding: 20px;
    }

    .deepseek-horoscope-widget h3 {
        font-size: 18px;
    }

    .deepseek-result {
        padding: 20px;
    }

    .deepseek-result h3 {
        font-size: 16px;
    }
}
