body .bottom{
    height: 120px;
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.bottom .container{
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(15px);
    background: #ffffff22;
    padding: 15px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.bottom .container .icon{
    background: transparent;
    height: 60px;
    width: 60px;
    border-radius: 14px;
    margin: 0 5px;
    transition: 0.1s linear transform,0.05s linear opacity;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}
/* Calendar Toggle Button */
.calendar-toggle {
    display: flex;
    align-items: center;
    margin-right: 5px;
}

#toggle-calendar {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

#toggle-calendar:hover {
    background: rgba(0,245,255,0.1);
    border-color: rgba(0,245,255,0.3);
    color: #00f5ff;
    transform: scale(1.05);
}

#toggle-calendar:active {
    transform: scale(0.95);
}

/* Calendar Hide/Show Animation */
#calendar-icon {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#calendar-icon.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.bottom .container .calender{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

/* MAC OS Calendar Style */
.mac-calendar {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
    border: 1px solid rgba(0,0,0,0.15);
}

.mac-calendar-month {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #f05138 0%, #d93025 100%);
    padding: 4px 0 3px;
    line-height: 1;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.mac-calendar-date {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: 23px;
    font-weight: 300;
    color: #1c1c1e;
    text-align: center;
    line-height: 1;
    background: #ffffff;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.5px;
}

.bottom .container .calender p{
    transform:translateY(3px);
    font-size: 10px;
    color: red;
    font-weight: 700;
}

.bottom .container .calender h1{
    font-weight: 100;
}
.bottom .container .icon:hover{
    transform: translateY(-10px) scale(1.08);
}
.bottom .container .icon:active{
    opacity: 0.7;
    transform: scale(1.07);
}