.zodiac-card {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background: #fff8f0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.zodiac-card h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 24px;
}

.zodiac-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.zodiac-form label {
    color: #34495e;
    font-size: 16px;
    font-weight: 500;
}

.zodiac-form input[type="date"] {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    color: #2c3e50;
    background: white;
    cursor: pointer;
}

.zodiac-form input[type="date"]:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.zodiac-form button {
    padding: 12px 24px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zodiac-form button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

#zodiac-result {
    display: none;
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    animation: fadeIn 0.5s ease;
}

#zodiac-result.show {
    display: block;
}

#zodiac-result h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 20px;
}

#zodiac-result p {
    color: #34495e;
    font-size: 16px;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .zodiac-card {
        margin: 15px;
        padding: 20px;
    }

    .zodiac-card h2 {
        font-size: 20px;
    }

    .zodiac-form input[type="date"],
    .zodiac-form button {
        font-size: 14px;
    }

    #zodiac-result h3 {
        font-size: 18px;
    }

    #zodiac-result p {
        font-size: 14px;
    }
} 