/* Table 2 Styles */  
		.t2 {
            width: 100%;
            border-collapse: collapse;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
			max-width: 500px;
        }
        
        .t2 th {
            background-color: #0067b8;
            color: white;
            padding: 12px 15px;
            text-align: center;
            font-weight: bold;
        }
        
        .t2 td {
            padding: 10px 15px;
            border-bottom: 1px solid #e0e0e0;
        }
		
		/* Archive Section Styles */
.archive-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.archive-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.month-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.month-selector select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    font-size: 1rem;
}

.download-buttons {
    display: flex;
    gap: 10px;
}

.download-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(135deg, #4ca1af, #2c3e50);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.download-btn i {
    font-size: 1.1rem;
}

.archive-table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.archive-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 800px;
}

.archive-table th {
    background: #0067b8;
    color: white;
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.archive-table td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.85rem;
}

.archive-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.archive-table tr:hover {
    background-color: #e3f2fd;
}

.archive-date {
    font-weight: 600;
    color: #2c3e50;
    background-color: #f1f8ff;
}

/* Responsive design */
@media (max-width: 768px) {
    .archive-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .month-selector {
        justify-content: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .archive-table th,
    .archive-table td {
        padding: 8px 4px;
        font-size: 0.8rem;
    }
    
    .archive-table {
        min-width: 700px;
    }
}

        .wraper {
            border-radius: 20px;
            padding: 30px;
            max-width: 1200px;
            width: 100%;
            color: #333;
        }

        .main-content {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }

        @media (max-width: 900px) {
            .main-content {
                flex-direction: column;
            }
        }

        .clock-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .clock-container {
            position: relative;
            width: 300px;
            height: 300px;
            margin-bottom: 25px;
        }

        .clock {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 2;
			border: 8px dotted;
        }

        .clock::before {
            content: '';
            position: absolute;
            width: 15px;
            height: 15px;
            background: #4a4a4a;
            border-radius: 50%;
            z-index: 10;
        }

        .hour, .minute, .second {
            position: absolute;
            transform-origin: bottom center;
            border-radius: 10px;
            z-index: 3;
        }

        .hour {
            width: 8px;
            height: 70px;
            background: #4a4a4a;
            top: 70px;
            left: calc(50% - 4px);
        }

        .minute {
            width: 6px;
            height: 100px;
            background: #4a4a4a;
            top: 40px;
            left: calc(50% - 3px);
        }

        .second {
            width: 2px;
            height: 120px;
            background: #e74c3c;
            top: 20px;
            left: calc(50% - 1px);
        }

        .clock-number {
            position: absolute;
            width: 100%;
            height: 100%;
            text-align: center;
            font-weight: bold;
            font-size: 16px;
            color: #4a4a4a;
            z-index: 3;
        }

        .clock-number div {
            position: absolute;
            transform-origin: bottom center;
            width: 100%;
            height: 50%;
            left: 0;
            top: 0;
        }

        .clock-number span {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 15px;
        }

        .digital-clock {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
            text-align: center;
        }

        .date-display {
            font-size: 1.4rem;
            color: #7f8c8d;
            text-align: center;
            margin-bottom: 30px;
        }

        .prayer-section {
            flex: 2;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            overflow: hidden;
        }

        th, td {
            padding: 10px 16px;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
        }

        th {
            background: #0067b8;
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
        }

        tr {
            transition: all 0.3s ease;
            cursor: pointer;
        }

        tr:nth-child(even) {
            background: #f9f9f9;
        }

        tr:hover {
            background: #f1f1f1;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        tr:active {
            transform: translateY(0);
        }

        td {
            color: #333;
            font-size: 1.05rem;
        }

        .prayer-name {
            text-align: left;
            font-weight: 600;
        }

        .start-time, .end-time {
            font-weight: 600;
        }

        /* Color coding for prayers */
        tr[data-prayer="fajr"].active-row {
            background-color: rgba(39, 219, 60, 0.2) !important;
            box-shadow: 0 0 15px rgba(39, 219, 60, 0.3);
        }
        
        tr[data-prayer="sunrise"].active-row,
        tr[data-prayer="sunset"].active-row,
        tr[data-prayer="zawal"].active-row {
            background-color: rgba(196, 45, 45, 0.2) !important;
            box-shadow: 0 0 15px rgba(196, 45, 45, 0.3);
        }
        
        tr[data-prayer="ishraq"].active-row,
        tr[data-prayer="chasht"].active-row {
            background-color: rgba(39, 186, 219, 0.2) !important;
            box-shadow: 0 0 15px rgba(39, 186, 219, 0.3);
        }
        
        tr[data-prayer="dhuhr"].active-row {
            background-color: rgba(159, 219, 39, 0.2) !important;
            box-shadow: 0 0 15px rgba(159, 219, 39, 0.3);
        }
        
        tr[data-prayer="asr"].active-row {
            background-color: rgba(201, 219, 39, 0.2) !important;
            box-shadow: 0 0 15px rgba(201, 219, 39, 0.3);
        }
        
        tr[data-prayer="maghrib"].active-row {
            background-color: rgba(219, 195, 39, 0.2) !important;
            box-shadow: 0 0 15px rgba(219, 195, 39, 0.3);
        }
        
        tr[data-prayer="isha"].active-row,
        tr[data-prayer="awwabin"].active-row {
            background-color: rgba(219, 165, 39, 0.2) !important;
            box-shadow: 0 0 15px rgba(219, 165, 39, 0.3);
        }
        
        tr[data-prayer="tahajjud"].active-row {
            background-color: rgba(20, 166, 73, 0.2) !important;
            box-shadow: 0 0 15px rgba(20, 166, 73, 0.3);
        }

        tr.active-row td {
            color: #2c3e50;
            font-weight: 600;
        }

        .active-time {
            position: relative;
        }

        .active-time::after {
            content: '●';
            position: absolute;
            right: 0px;
            animation: pulse 1.5s infinite;
        }

        /* Color for active time indicators */
        tr[data-prayer="fajr"] .active-time::after { color: #27db3c; }
        tr[data-prayer="sunrise"] .active-time::after,
        tr[data-prayer="sunset"] .active-time::after,
        tr[data-prayer="zawal"] .active-time::after { color: #c42d2d; }
        tr[data-prayer="ishraq"] .active-time::after,
        tr[data-prayer="chasht"] .active-time::after { color: #27badb; }
        tr[data-prayer="dhuhr"] .active-time::after { color: #9fdb27; }
        tr[data-prayer="asr"] .active-time::after { color: #c9db27; }
        tr[data-prayer="maghrib"] .active-time::after { color: #dbc327; }
        tr[data-prayer="isha"] .active-time::after,
        tr[data-prayer="awwabin"] .active-time::after { color: #dba527; }
        tr[data-prayer="tahajjud"] .active-time::after { color: #14a649; }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.4; }
            100% { opacity: 1; }
        }

        .new-section {
            margin-top: 30px;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 10px;
        }
        
        .prayer-time-item {
            margin-bottom: 25px;
            padding: 20px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            scroll-margin-top: 100px;
        }
        
        /* Border colors for prayer items */
        #fajr-detail { border-left: 5px solid #27db3c; }
        #sunrise-detail,
        #sunset-detail,
        #zawal-detail { border-left: 5px solid #c42d2d; }
        #ishraq-detail,
        #chasht-detail { border-left: 5px solid #27badb; }
        #dhuhr-detail { border-left: 5px solid #9fdb27; }
        #asr-detail { border-left: 5px solid #c9db27; }
        #maghrib-detail { border-left: 5px solid #dbc327; }
        #isha-detail,
        #awwabin-detail { border-left: 5px solid #dba527; }
        #tahajjud-detail { border-left: 5px solid #14a649; }
        
        .prayer-time-display {
            font-weight: 600;
            font-size: 1.2rem;
            color: #4a4a4a;
        }
        
        .time-range {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin: 15px 0;
            flex-wrap: wrap;
        }
        
        .time-separator {
            font-weight: bold;
            color: #7f8c8d;
        }
        
        .prayer-info {
            margin-top: 10px;
            color: #666;
            line-height: 1.6;
        }
        
        .prayer-azan {
            margin-top: 15px;
            padding: 10px;
            background-color: #f0f8ff;
            border-radius: 5px;
            border-left: 3px solid #4ca1af;
        }
        
        .azan-time-display {
            font-weight: 600;
            color: #2c3e50;
        }
        
        hr {
            margin: 15px 0;
            border: 0;
            height: 1px;
            background: #eee;
        }

        .button-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin-top: 20px;
            padding: 0 10px;
        }

        .prayer-btn {
            flex: 1;
            min-width: 140px;
            padding: 14px 12px;
            border: none;
            border-radius: 12px;
            background: linear-gradient(135deg, #5cb0bf, #3a5f73);
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
            text-decoration: none;
            text-align: center;
        }

        .prayer-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, #4ca1af, #2c3e50);
        }

        .prayer-btn i {
            font-size: 1.4rem;
            margin-bottom: 8px;
            color: #fff;
        }

        .footer-prayer {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            color: #7f8c8d;
        }

        .explanation {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

        .highlighted {
            animation: highlight 2s ease;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        }

        @keyframes highlight {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        .time-display {
            min-width: 80px;
            display: inline-block;
        }

        /* Monthly Prayer Times Table Styles */
        .monthly-section {
            margin-top: 30px;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .monthly-table-container {
            overflow-x: auto;
            margin-top: 20px;
        }

        .monthly-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            min-width: 800px;
        }

        .monthly-table th {
            background: #4ca1af;
            color: white;
            padding: 12px 8px;
            text-align: center;
            font-weight: 600;
            font-size: 0.9rem;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .monthly-table td {
            padding: 10px 8px;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
            font-size: 0.85rem;
        }

        .monthly-table tr.current-date {
            background-color: rgba(76, 161, 175, 0.15) !important;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(76, 161, 175, 0.3);
        }

        .monthly-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }

        .monthly-table tr:hover {
            background-color: #e3f2fd;
        }

        .monthly-date {
            font-weight: 600;
            color: #2c3e50;
            background-color: #f1f8ff;
        }

        .current-date .monthly-date {
            background-color: #4ca1af;
            color: white;
        }

        .prayer-time-cell {
            font-family: 'Courier New', monospace;
            font-weight: 500;
        }
		
		/* Prayer Labels */
        .prayer-label {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 15px;
            color: white;
            font-size: 0.85rem;
            margin-top: 5px;
            font-weight: 500;
        }

        .fajr-label { background: #27db3c; }
		.sunrise-label { background: #c42d2d; }
		.ishraq-label { background: #27badb; }
		.chasht-label { background: #27badb; }
		.zawal-label { background: #c42d2d; }
        .dhuhr-label { background: #9fdb27; }
        .asr-label { background: #c9db27; }
		.sunset-label { background: #c42d2d; }
        .maghrib-label { background: #dbc327; }
		.awwabin-label { background: #dba527; }
        .isha-label { background: #dba527; }
		.tahajjud-label { background: #14a649; }

        .color-box {
            width: 15px;
            height: 15px;
            border-radius: 3px;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .monthly-table th,
            .monthly-table td {
                padding: 8px 4px;
                font-size: 0.8rem;
            }
            
            .monthly-table {
                min-width: 700px;
            }
			
			.wraper {
				padding: 10px;
			}
			
			.new-section {
				padding: 10px;
			}
        }
		
		/* Responsive design */
        @media (max-width: 500px) {
            .monthly-table th,
            .monthly-table td {
                padding: 8px 4px;
                font-size: 0.8rem;
            }
            
            .monthly-table {
                min-width: 700px;
            }
			
			.monthly-section {
				padding: 10px;
			}
			
			.archive-section {
				padding: 10px;
			}
			
			.wraper {
				padding: 5px;
			}
			
			.main-content {
				gap: 10px;
			}
			
			.new-section {
				padding: 5px;
			}
			
			.explanation {
				padding: 10px;
			}
			
			.prayer-time-item {
				padding: 5px;
			}
			
			th, td {
				padding: 5px;
			}
			
			.button-container {
				padding: 0px 5px;
			}
			
			.prayer-btn {
				padding: 6px 14px;
			}
			
			.date-display {
				margin-bottom: 5px;
			}
			
			.t2 th {
				padding: 6px 15px;
			}
			
			.t2 td {
				padding: 5px 15px;
			}
			
			.time-range {
				margin: 2px 0px;
			}
        }
		
		.gregorian-date-display {
			color: #4ca1af;
		}
		
		.total {
			background-color: #4ca1af;
		}
		
		.total-td {
			color: white;
			background-color: #4ca1af;
		}