.fullscreen-calendar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999 !important;
    background: white !important;
    padding: 1rem !important;
    margin: 0 !important;
}
.fullscreen-calendar #pet-calendar {
    height: calc(100vh - 150px) !important;
    overflow-y: auto !important; 
    display: block !important;
}
.fullscreen-calendar #calendar-close {
    display: block !important;
}
#calendar-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically */
    min-height: 80px; /* Compact layout */
    transition: none !important; /* Disable all transitions */
}
#calendar-header {
    display: flex;
    align-items: center;
    gap: 8px; /* Consistent spacing between icon and text */
}
#calendar-header i {
    line-height: 1; /* Ensure icon aligns with text */
    vertical-align: middle;
}
#calendar-header h3 {
    margin: 0; /* Remove default margin */
    line-height: 1; /* Match icon line height */
    vertical-align: middle;
}
.mmoodern-card {
    margin-bottom: 0 !important; /* Override theme margin */
    transition: none !important; /* Disable animations */
}
#calendar-close {
    background-color: #f15452 !important; /* Retain red background */
    color: #ffffff !important; /* White text */
    border-radius: 9999px !important; /* Fully rounded border (pill shape) */
    transition: none !important; /* Retain existing no-transition rule */
}
.rreminder-count {
    background: #6366f1;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 20px;
    min-width: 20px;
    text-align: center;
}