*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins',sans-serif;
}

body{
    height: 100vh;
    background: rgba(0, 0, 0, 0.85) url(Assets/World_map.png) center/cover no-repeat ;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.container{
    text-align: center;
    width: 90%;
    max-width: 800px;
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.85);
}

header h1{
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

nav a{
    color: #aaa;
    margin: 0 10px;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover,nav a.active{
    color: #fff;
    border-bottom: 2px solid #fff;
}

.clock-section{
    margin-top: 30px;
}

.time-display{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.time-display div{
    text-align: center;
}

.time-display span{
    font-size: 4rem;
    display: block;
    font-weight: bold;
    letter-spacing: 3px;
}

.time-display p{
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #ccc;
}

.selector{
    font-size: 1.1rem;
    color: #fff;
    margin-top: 20px;
}

select {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1rem;
    padding: 10px 15px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

select:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

option {
    background-color: #222;
    color: #fff;
}

#country-name {
    font-size: 1.5rem;
    color: #00e0ff;
    text-shadow: 0 0 10px #00e0ff;
    transition: color 0.3s, text-shadow 0.3s;
}

.alarm-set {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.alarm-set input[type="time"] {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 10px 15px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.alarm-set input[type="time"]:hover,.alarm-set input[type="time"]:focus {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.alarm-set button {
    background: linear-gradient(135deg, #00e0ff, #0066ff);
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}

.alarm-set button:hover {
    background: linear-gradient(135deg, #0099ff, #0044cc);
    transform: scale(1.05);
}

.delete-btn {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.4);
    color: #ff6b6b;
    border-radius: 6px;
    padding: 3px 8px;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
}

.delete-btn:hover {
    background: rgba(255, 0, 0, 0.4);
    color: #fff;
    transform: scale(1.1);
}


button {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}

button:hover{
    background: #fff;
    color: #000;
}

ul{
    list-style: none;
    margin-top: 20px;
    text-align: left;
}

ul li{
    margin: 5px 0;
    padding: 5px;
    border-bottom: 1px solid #444;
}