/* Timer Notification Styles */ .timer-notification { position: fixed; top: 100px; right: 10px; background-color: white; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); padding: 7px; border-radius: 12px; z-index: 1000; width: 520px; font-family: 'Open Sans', sans-serif; text-align: center; } h4 { margin-bottom: 15px; margin-top:5px; font-size: 23px; color: black; font-weight: bold; } .timer { display: flex; justify-content: space-around; margin: 15px 0; } .time-box { text-align: center; padding: 4px; } .time-value { font-size: 24px; font-weight: bold; border: 2px solid white; background-color: white; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); display: block; width: 70px; border-radius: 4px; color: black; } .time-label { font-size: 14px; color: #888; } .register-btn { background-color: #007bff; color: #fff; padding: 6px 10px; text-decoration: none; border-radius: 6px; font-size: 16px; display: inline-block; width: 30%; text-align: center; margin-top: 10px; margin-bottom: 5px; font-weight: bold; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); } .register-btn:hover { background-color: #0056b3; color: white; } .close-btn { position: absolute; top: 10px; right: 10px; background: none; border: none; font-size: 1.2em; cursor: pointer; color: #e74c3c; }