@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #034c64;
}
.hero{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 25px;
}
.Heading {
    text-align: center;
    margin-bottom: 10px;
    color: #fff;
}
.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
    margin-top: 10px;
}
.calendar{
    width: 450px;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.footer{
    width: 450px;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    margin-top: 10px;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.monthYear{
    font-size: 24px;
    font-weight: 700;
    color: #333;
}
.header button{
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    width: 35px;
    height: 35px;
    font-size: 18px;
    color: #555;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.days{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-top: 10px;
}
.day{
    text-align: center;
    padding: 5px;
    color: #555;
    font-weight: 500;
}
.dates{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}
.date{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    margin: auto;
    cursor: pointer;
    font-weight: 600;
    border-radius: 7px;
    width: 40px;
    height: 40px;
    transition: background 0.3s, color 0.3s;
    color: #000;
}
.date.active {
    background: #034c64;
    color: #fff;
}
.date.weekend{
    color: red;
}
.date.inactive {
    color: #ccc;
    cursor: default;
}
.date.inactive:hover {
    background: none;
    color: #ccc;
}
.date.poya{
    background: #1fa74a;
    color: #fff;
}
.boxPoya{
    height: 35px;
    width: 35px;
    background: #1fa74a;
    border-radius: 5px;
}
.boxToday{
    height: 35px;
    width: 35px;
    background: #034c64;
    border-radius: 5px;
}
.items{
    display: flex;
    justify-content: space-around;
}
.cal-details #para{
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;

}
.nameandid{
    display: flex;
    justify-content: space-around;
    margin-left: 0px;
}
.item-box{
    display: flex;
    align-items: center;
    gap: 10px;
}
@media (max-width: 650px) {
    .hero{
        top: 5px;
        flex-direction: column;
    }
    .calendar {
        width: 90%;
        padding: 15px;
        top: 10px;
    }
    .monthYear {
        font-size: 20px;
    }
    .header button {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .date {
        width: 30px;
        height: 30px;
        padding: 8px;
    }
    .days{
        font-size: 15px;
    }
    .hero h1{
        font-size: 28px;
    }
    .footer{
        width: 90%;
        height: auto;
        padding: 15px;
        margin-top: 10px;
        
    }
    .cal-details #para{
        margin-left: 15px;
    }
    
}