
body {
    background: linear-gradient(135deg, #FF6F00, #FF8F00);
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    padding-top: 60px;
}

.calendar-button {
    border: 1px solid white;
    background-color: rgba(0, 0, 139, 0.1); /* white with 50% opacity */
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
}
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    margin-bottom: 20px;
}

.navbar {
    background-color: #E65100;
}
.card-custom {
    background-color: #FF6F00;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.card-header-custom {
    background-color: #E65100;
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: bold;
}
.card-body-custom {
    background-color: #FF8F00;
    padding: 20px;
}
.moon-phase {
    width: 100px;
    height: 100px;
    background-color: #FFFFFF;
    border-radius: 50%;
    margin-bottom: 10px;
}
.tithi-details p {
    margin: 0;
    padding: 5px 0;
}
.tithi-details strong {
    font-size: 1.2rem;
}
#date {
    font-size: 1.5rem;
    font-weight: bold;
}
.vrat-tile {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.vrat-tile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}
.vrat-details {
    color: #FFFFFF;
}
.vrat-details strong {
    font-size: 1.2rem;
}
.vrat-details p {
    margin: 0;
    padding: 5px 0;
}
@media (max-width: 576px) {
    .card-body-custom {
        padding: 10px;
    }
    .vrat-tile {
        flex-direction: row;
        align-items: center;
        padding: 5px;
    }
    .vrat-tile img {
        margin-right: 10px;
        margin-bottom: 0;
    }
    .vrat-details {
        text-align: left;
    }
}

h2, h3 {
    display: block;
}