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

body {
    width: 100%;
    height: 100vh;
    background: url(bg-9.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 350px;
    height: 40vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    backdrop-filter: blur(9px);
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(82, 78, 78, 0.5), 0px 0px 10px rgba(127, 124, 124, 0.7);

}

.clock {
    width: 100%;
    height: auto;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#time {
    font-size: 45px;
    font-weight: bolder;
}

#time-format {
    position: relative;
    top: -10px;
    font-size: 15px;
    font-weight: 600;
    margin-left: 5px;
}


.date {
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;

}

#day-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

#today-date {
    font-size: 25px;
    font-weight: bold;
}

.toggle-btn {
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.toggle-btn button {
    padding: 5px 8px;
    margin: 0px 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(82, 78, 78, 0.5), 0px 0px 10px rgba(127, 124, 124, 0.7);
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}
#format-12h{
    background: green;
    color: white;
}