		.top-section {
			display: none;
		}

/* Container for both calendars */
        .calendars-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            padding: 5px;
        }
        
        /* Individual calendar styles */
        .calendar-container1 {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 5px;
            max-width: 570px;
            width: 100%;
            margin: 0 auto;
        }
		
		.calendar-container2 {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 5px;
            max-width: 570px;
            width: 100%;
            margin: 0 auto;
        }
        
        .time-section {
            margin-bottom: 20px;
            text-align: center;
            display: none !important;
        }

        /* Desktop Date Section */
        .date-section.desktop {
            display: flex;
            gap: 10px;
					margin-bottom: 20px;
        }

        /* Mobile Date Section */
        .date-section.mobile {
            display: none;
            margin-bottom: 15px;
        }

        .date-row {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }

        .hijri-date, .gregorian-date, .desi-date {
            flex: 1;
            padding: 5px;
            background: #f9f9f9;
            border-radius: 10px;
            text-align: center;
            min-height: 70px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }


        .hijri-date h4, .gregorian-date h4, .desi-date h4 {
            margin: 0 0 5px 0;
            font-size: 0.9rem;
					font-weight: 800;
        }

        .hijri-date p, .gregorian-date p, .desi-date p {
            margin: 0;
            font-size: 0.9rem;
        }

        .hijri-date h4, .hijri-date p {
            color: #28a745;
        }

        .gregorian-date h4, .gregorian-date p {
            color: #007BFF;
        }
        
        .desi-date h4, .desi-date p {
            color: #ff6f00;
        }

        .month-section {
            margin-top: 15px;
			display: none;
        }

        .current-month {
            text-align: center;
            margin-bottom: 15px;
            color: #2c3e50;
            font-size: 1rem;
            line-height: 1.4;
        }

        .days-header {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .days-header span {
            text-align: center;
            color: #4ca1af;
            border: 1px solid #f7f7f7;
            border-radius: 4px;
            background-color: #f7f7f7;
            padding: 5px 0;
            font-size: 0.85rem;
        }

        .days-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
        }

        .days-grid div {
            padding: 8px 0;
            text-align: center;
            border-radius: 5px;
            background: #f0f0f0;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-size: 0.85rem;
        }

        .days-grid div.empty {
            background: transparent;
            cursor: default;
        }

        .days-grid div.current-day {
            background: #4ca1af80;
            color: white;
        }

        .days-grid div.selected-day {
            background: #60ce795c;
            color: white;
        }

        .gregorian-day {
            font-weight: bold;
            color: #007BFF;
            border-bottom: 1px solid #007BFF;
            font-size: 0.9rem;
        }

        .hijri-day {
            font-weight: bold;
            color: #28a745;
            border-bottom: 1px solid #28a745;
            font-size: 0.8rem;
        }
        
        .desi-day {
            font-weight: bold;
            color: #ff6f00;
            border-bottom: 1px solid #ff6f00;
            font-size: 0.8rem;
        }

        .navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
        }

        .navigation button {
            background: #4ca1af;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .calendars-wrapper {
                flex-direction: column;
                align-items: center;
				padding: 10px;
            }
            
            .calendar-container1 {
                max-width: 100%;
            }
			
			.calendar-container2 {
                max-width: 100%;
            }
            
            .date-section.desktop {
                display: none;
            }
            
            .date-section.mobile {
                display: block;
            }
            
            .date-row .gregorian-date,
            .date-row .hijri-date {
                flex: 1 0 calc(50% - 10px);
            }
            
            .desi-date {
                width: 100%;
            }
            
            .current-month {
                font-size: 0.95rem;
                padding-bottom: 10px;
            }
            
            .days-grid div {
                padding: 6px 0;
                font-size: 0.8rem;
            }
            
            .gregorian-day, .hijri-day, .desi-day {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .calendars-wrapper {
				padding: 4px;
				gap: 40px;
			}
			.calendar-container1 {
                padding: 4px;
                border-radius: 10px;
            }
			
			.calendar-container2 {
                padding: 4px;
                border-radius: 10px;
            }
            
            h3 {
                font-size: 1.1rem;
                margin-bottom: 12px;
            }
            
            .date-row .gregorian-date,
            .date-row .hijri-date {
                flex: 1 0 calc(40% - 5px);
            }
            
            .hijri-date, .gregorian-date, .desi-date {
                padding: 8px;
                min-height: 60px;
            }
            
            .hijri-date h4, .gregorian-date h4, .desi-date h4 {
                font-size: 0.8rem;
            }
            
            .hijri-date p, .gregorian-date p, .desi-date p {
                font-size: 0.8rem;
            }
            
            .days-header span {
                font-size: 0.70rem;
                padding: 3px 0;
            }
            
            .days-grid div {
                padding: 4px 0;
                font-size: 0.70rem;
            }
            
            .navigation button {
                padding: 6px 12px;
                font-size: 0.8rem;
            }
			
			.desi-date {
                width: 95%;
            }
        }