/* Main container */
.nepali-date-container {
    background: linear-gradient(145deg, #ff6b6b, #ff8e8e);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    max-width: 300px;
    margin: 0 auto;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

/* Nepal Flag - Optimized for Accuracy */
.nepali-flag {
    width: 120px;
    margin: 0 auto 20px;
    position: relative;
    height: 150px;
}

/* Blue border (outer triangles) */
.nepali-flag .outer-triangle-top {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 80px solid #003893;
    border-bottom: 50px solid transparent;
    position: relative;
}

.nepali-flag .outer-triangle-bottom {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 100px solid #003893;
    border-top: 80px solid transparent;
    position: relative;
    top: -20px;
}

/* Red flag (inner triangles) */
.nepali-flag .red_flag {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 9;
}

.nepali-flag .inner-triangle-top {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 70px solid #DC143C;
    border-bottom: 45px solid transparent;
}

.nepali-flag .inner-triangle-bottom {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 90px solid #DC143C;
    border-top: 70px solid transparent;
    position: relative;
    top: -15px;
}

/* Moon (more accurate crescent shape) */
.nepali-flag #moon {
    position: absolute;
    top: 25px;
    left: 30px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    box-shadow: 5px 0 0 0 #DC143C;
    z-index: 11;
}

/* Sun (with 12 rays - simplified) */
.nepali-flag #sun {
    position: absolute;
    top: 80px;
    left: 35px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 
        0 0 0 2px white,
        0 0 0 4px #DC143C;
}

/* Date elements (unchanged) */
.nepali-date-header {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.nepali-date-day {
    font-size: 18px;
    margin-bottom: 5px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.nepali-date-main {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nepali-date-year {
    font-size: 20px;
    opacity: 0.9;
    letter-spacing: 1px;
}