.panchang-card {
            background-image: -webkit-linear-gradient(68deg, rgb(183, 23, 29) 0%, rgb(243, 113, 16) 100%);
            background-image: linear-gradient(68deg, rgb(183, 23, 29) 0%, rgb(243, 113, 16) 100%);
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(183, 23, 29, 0.3);
            color: white;
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .panchang-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(183, 23, 29, 0.4);
        }
        
        .panchang-header {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
        }
        
        .panchang-title {
            font-size: 18px;
            font-weight: bold;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .location-section {
            margin-top: 8px;
            position: relative;
        }
        
        .location-display {
            font-size: 13px;
            opacity: 0.9;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .location-input-container {
            position: relative;
            display: none;
            margin-top: 8px;
        }
        
        .location-input {
            width: 100%;
            padding: 8px 12px;
            border: none;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            font-size: 12px;
            outline: none;
        }
        
        .location-input::placeholder {
            color: #666;
        }
        
        .location-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            max-height: 150px;
            overflow-y: auto;
            z-index: 1000;
            display: none;
        }
        
        .location-item {
            padding: 10px 12px;
            color: #333;
            cursor: pointer;
            border-bottom: 1px solid #eee;
            font-size: 12px;
        }
        
        .location-item:hover {
            background: #f8f9fa;
        }
        
        .location-item:last-child {
            border-bottom: none;
        }
        
        .panchang-icon {
            width: 30px;
            height: 30px;
            position: absolute;
            top: 12px;
            right: 15px;
            opacity: 0.8;
        }
        
        .panchang-content {
            padding: 20px 15px 15px;
        }
        
        .panchang-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 15px;
        }
        
        .panchang-item {
            /*background: rgba(255, 255, 255, 0.15);*/
            background: #f5f0eb;
            border-radius: 8px;
            padding: 10px 8px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        /*.panchang-item:hover {
            background: rgba(255, 255, 255, 0.2);
        }*/
        
        .panchang-label {
            font-size: 10px;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
            font-weight: 600;
            color: #000;
        }
        
        .panchang-value {
            font-size: 15px;
            font-weight: bold;
            color: #fff;
            color: #000;
        }
        
        .time-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        
        .time-card {
            background: #fff8f2;
            border-radius: 16px;
            padding: 16px 14px;
            text-align: left;
            position: relative;
            box-shadow: 0 6px 20px rgba(255, 165, 0, 0.2);
            border: 1px solid rgba(255, 193, 7, 0.15);
            transition: all 0.3s ease;
        }
        
        .time-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 165, 0, 0.25);
        }
        
        .time-card.sunset-card {
            background: #fff4f0;
            box-shadow: 0 6px 20px rgba(255, 87, 34, 0.2);
            border: 1px solid rgba(255, 152, 0, 0.15);
        }
        
        .time-card.sunset-card:hover {
            box-shadow: 0 8px 25px rgba(255, 87, 34, 0.25);
        }
        
        .time-card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .time-card-title {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            margin: 0;
        }
        
        .time-card-value {
            font-size: 16px;
            font-weight: bold;
            color: #2c2c2c;
            margin: 0;
        }
        
        .sun-icon-card {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #ffcc80 0%, #ffa726 50%, #ff9800 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
            border: 3px solid rgba(255, 255, 255, 0.9);
        }
        
        .sunset-icon-card {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            /*background: radial-gradient(circle at 30% 30%, #ffab91 0%, #ff7043 50%, #ff5722 100%);*/
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            position: relative;
            box-shadow: 0 4px 15px rgba(255, 112, 67, 0.4);
            border: 3px solid rgba(255, 255, 255, 0.9);
        }
        
        .sunset-icon-card::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 26px;
            height: 5px;
            /*background: linear-gradient(90deg, #4fc3f7 0%, #29b6f6 100%);*/
            border-radius: 3px;
            /*box-shadow: 0 2px 6px rgba(41, 182, 246, 0.4);*/
        }

        .sun-icon-card img{width:27px;height:27px;}
        .sunset-icon-card img{width:35px;height:35px;}
        
        .date-display {
            font-size: 14px;
            opacity: 0.8;
            margin-top: 4px;
        }

        .mt-3{margin-top:3rem !important;}
        
        @media (max-width: 768px) {
            .panchang-grid {
                gap: 8px;
            }
            
            .panchang-item {
                padding: 8px 6px;
            }
            
            .panchang-value {
                font-size: 12px;
            }
            
            .time-section {
                gap: 8px;
            }
            
            .time-card {
                padding: 12px 10px;
            }
            
            .sun-icon-card, .sunset-icon-card {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }
        }
        
        .panchang-card {
            animation: slideIn 0.6s ease-out;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }