#daily-horoscope{
	/*background-color: black;
	color: white;*/
}

#daily-horoscope-panel{
	/* Widget box ko center karne ke liye */
	margin: 0 auto; 
    width: 95%; /* Maximum width se chhota, taki margin dikhe */
    max-width: 400px;
	
    /* Existing Styling */
	padding:10px;
    background-color: #fff9e0; /* Screenshot look */
    border-radius: 12px;
    border: 1px solid #f29c36; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Title Section Styling */
#horoscope-title{
    background-color: #f29c36; /* Orange background */
    color: white; 
    text-align: center;
    margin: -10px -10px 10px -10px; /* Panel ke edges tak push karein */
    padding: 10px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10px 10px 0 0;
}

/* Select Box Styling */
.daily-horoscope-star{
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    background-color: white;
}

/* Date Text Styling */
#date-text{
    display: block;
    text-align: center;
    color: #92404e; /* Pinkish-red color */
    font-size: 16px;
    font-style: normal;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Horoscope Display Text Styling */
.daily-horoscope-display{
	padding-top:10px;
    font-size: 18px; 
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.daily-horoscope-copyright{
	font-size: 14px;
	color: rgb(132, 131, 131);
}

/* Mobile View (767px ya usse kam) ke liye full width set karna */
@media (max-width: 767px) {
    #daily-horoscope-panel {
        max-width: 100%; /* <--- Mobile ke liye set kiya gaya (100%) */
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        border-radius: 0; /* Full-screen look ke liye border radius hataya */
    }
}