/* General Styles */
        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            background: #121212;
            color: #39ff14;
            font-family: 'Orbitron', sans-serif;
        }
        .container {
            width: 90%;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 255, 0, 0.5);
            background: #1a1a1a;
            border-radius: 8px;
            position: relative;
            margin-bottom: 20px;
        }
        h2 {
            color: #39ff14;
            cursor: pointer;
            user-select: none;
        }
        /* Form Styles */
        #timezone-form {
            margin-bottom: 20px;
            text-align: center;
        }
        #timezone-form label, #timezone-form select, #timezone-form button {
            font-size: 16px;
            margin: 5px;
        }
        /* Timezone List Styles */
        .region {
            width: 100%;
        }
        .region-content {
            display: none;
        }
        .region.collapsed .region-content {
            display: none;
        }
        .region.expanded .region-content {
            display: block;
        }
        .time-zone {
            position: relative;
            margin-bottom: 40px;
        }
        .label {
            font-size: 14px;
            margin-right: 10px;
            display: block;
            margin-bottom: 5px;
        }
        .time-line {
            position: relative;
            width: 100%;
            height: 40px;
            background-color: #333;
            overflow: visible;
        }
        .hour-mark {
            position: absolute;
            width: 2px;
            height: 20px;
            background-color: #ff00ff;
        }
        .minute-mark {
            position: absolute;
            width: 1px;
            height: 10px;
            background-color: #00ffff;
        }
        .current-time-marker {
            position: absolute;
            top: 0;
            width: 2px;
            height: 100%;
            background-color: #ff4500;
            z-index: 1000;
            transition: left 0.5s linear; /* Smooth transition */
        }
        .current-hour {
            background-color: rgba(57, 255, 20, 0.2);
            position: absolute;
            height: 100%;
            z-index: -1;
        }
        .hour-labels {
            position: relative;
            height: 20px;
        }
        .hour-label {
            position: absolute;
            margin-top: 22px;
            color: #39ff14;
            font-size: 12px;
        }
        .timezone-info {
            font-size: 12px;
            color: #999;
        }
        /* Remove Button */
        .remove-button {
            background-color: #ff0000;
            color: #fff;
            border: none;
            padding: 2px 6px;
            cursor: pointer;
            font-size: 12px;
        }
	#click-me {
	position: relative;
	width: 100px;
	height: 10px;
	margin-left: auto;
	margin-right: auto;
	}
	footer {
	vertical-align: bottom;
	position:absolute;
	bottom: 0;
	right: 0;
	left: 0;
	text-align: center;
	color: #ff00ff;
	font-size: 11px;
	margin-bottom: 10px;
	margin-top: 5px;
	}
	hr {
	height: 1px;
	color: #ff00ff;
	background: #ff00ff;
	width: 35%;
	font-size: 0;
	border: 0;
	margin-bottom: 5px;
	margin-top: 5px;
	}
        /* Responsive Design */
        @media (max-width: 600px) {
            .hour-label {
                font-size: 10px;
            }
            .label {
                font-size: 12px;
            }
	.countdown {
	color: #39ff14;
	font-size: 14px;
	}
    }

