/* Horoscope Styling with PNG Symbol Support */

.horoscopes {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: "Arial", sans-serif;
	font-size: 1.2em;
}

.horoscope {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    margin-bottom: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #6e4fa0;
}

.horoscope-icon {
    width: 120px;
    height: 120px;
    margin-right: 15px;
    flex-shrink: 0;
}

.horoscope-content {
    flex: 1;
}

.horoscope-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.horoscopes-date {
    font-style: italic;
    color: #333;
    font-size: 1.2em;
    margin-top: -20px;
    margin-bottom: 1px;
    margin-left: 15px;
}

.horoscopes-tagline {
    font-weight: bold;
    color: #333;
    font-size: 1.2em;
    margin-bottom: 10px;
    margin-left: 15px;
}

.horoscope-dates {
    font-style: italic;
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.horoscope-text {
    color: #444;
    line-height: 1.6;
}

/* Individual sign colors (optional) */
.horoscope.aries { border-left-color: #ccc; }
.horoscope.taurus { border-left-color: #ccc; }
.horoscope.gemini { border-left-color: #ccc; }
.horoscope.cancer { border-left-color: #ccc; }
.horoscope.leo { border-left-color: #ccc; }
.horoscope.virgo { border-left-color: #ccc; }
.horoscope.libra { border-left-color: #ccc; }
.horoscope.scorpio { border-left-color: #ccc; }
.horoscope.sagittarius { border-left-color: #ccc; }
.horoscope.capricorn { border-left-color: #ccc; }
.horoscope.aquarius { border-left-color: #ccc; }
.horoscope.pisces { border-left-color: #ccc; }

/* Responsive design */
@media (max-width: 600px) {
    .horoscope {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .horoscope-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}