/* uranai.css */
#horoscope-uranai-wrapper {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.horoscope-form h2 {
    text-align: center;
    color: #333;
}

#horoscope-result h2 {
    text-align: left;
    color: #333;
    font-size: 1.2em;
}

#horoscope-result h3 {
    text-align: left;
    color: #333;
    font-size: 1.1em;
}

.horoscope-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}

.horoscope-form input[type="number"],
.horoscope-form input[type="text"],
.horoscope-ai-selector select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.date-time-inputs > div {
    flex: 1;
    min-width: 60px;
}

.action-btn {
    width: 100%;
    padding: 12px;
    background-color: #6a1b9a;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.action-btn:hover {
    background-color: #4a148c;
}

.horoscope-spinner {
    border: 4px solid rgba(0,0,0,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-left-color: #6a1b9a;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

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

.horoscope-result-section {
    background: #fff;
    padding: 10px; /* 15px -> 10px */
    border-radius: 8px;
    border: 1px solid #eee;
    margin-top: 10px; /* 15px -> 10px */
    font-size: 0.85em; /* 0.9em -> 0.85em */
    text-align: left;
    line-height: 1.4; /* 少し詰め気味に */
}

.horoscope-result-section h1,
.horoscope-result-section h2,
.horoscope-result-section h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: left !important;
}

.horoscope-result-section p,
.horoscope-result-section ul,
.horoscope-result-section li {
    text-align: left !important;
    margin-bottom: 8px;
}

.horoscope-result-section ul {
    padding-left: 15px;
    margin-bottom: 10px;
}

.horoscope-result-section li {
    margin-bottom: 3px;
}

#horoscope-chart-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    /* html2canvas対策: crossoriginを明示的に指定 */
}

.horoscope-provider-note {
    text-align: right;
    font-size: 0.8em;
    color: #888;
}

.horoscope-cta {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: #f3e5f5;
    border-radius: 8px;
}

.horoscope-cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00c4cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
}

.horoscope-action-btn {
    padding: 8px 15px;
    margin: 0 5px;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.horoscope-action-btn:hover {
    background-color: #ddd;
}
