/* Kerykeion Astrology Plugin Styles */

.astrology-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.astrology-form-container .form-row {
    margin-bottom: 15px;
}

.astrology-form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.astrology-form-container input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.astrology-form-container button {
    background: #0100be;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.astrology-form-container button:hover {
    background: #01009e;
}

#report-loading {
    text-align: center;
    padding: 20px;
}

.astrology-report {
    margin-top: 30px;
}

.astrology-report h2 {
    margin-bottom: 20px;
}

.planet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.planet-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.planet-card h3 {
    margin-top: 0;
    color: #0100be;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.planet-card p {
    margin: 8px 0;
    line-height: 1.4;
}