@keyframes pulse {
             0% {
                 transform: scale(1);
             }
             50% {
                 transform: scale(1.05);
             }
             100% {
                 transform: scale(1);
             }
         }
 
         @keyframes flip {
             0% {
                 transform: rotateX(0deg);
             }
             50% {
                 transform: rotateX(90deg);
             }
             100% {
                 transform: rotateX(0deg);
             }
         }
 
         .countdown-box {
             transition: all 0.3s ease;
         }
 
         .countdown-box:hover {
             transform: translateY(-3px);
             box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
         }
 
         .apply-button:hover {
             transform: translateY(-2px) !important;
             box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3) !important;
         }
 
         .flip-animation {
             animation: flip 0.6s ease;
         }
 
         .pulse-animation {
             animation: pulse 1s infinite;
         }
 
         #minimize-btn:hover {
             background: rgba(255, 255, 255, 0.3);
             transform: scale(1.1);
         }
 
         #minimized-card:hover {
             transform: scale(1.05);
         }


         .CallButton {
         	display: none;
         }