body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 70px;
    background-color: #332e2e;
}

.input11, .select, .button { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; margin-bottom: 15px; }
.button11 { 
    background: #660404; 
    color: white; 
    border: none; 
    cursor: pointer; 
    display: block;
    margin: 0 auto 15px;
    padding: 15px;
    border-radius: 5px;
    width: fit-content;
    text-decoration: none;
}
.button11:hover {
    background: #332e2e;
    transition: 0.3s;
}
.container { /* all */
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(133, 8, 8);
    margin-bottom: 20px;
}


.logo {
    width: 80px;
    height: auto;
}

.container h3{ 
    text-align: center;
    font-size: x-large;
    margin-bottom: 20px;
}
.summary-panel {
    display: flex;
    justify-content: space-between;
    padding: 29px;
    background: #660404;
    color: white;
    border-radius: 16px;
    box-shadow: 0 0 10px #332e2e;
    margin-bottom: 20px;
}
.summary-panel div {
    text-align: center;
}

.title-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.buttons-container {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}



.btn {
    padding: 10px 10px;
    background-color: #332e2e;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    transition: all 1.5s ease;
}

.btn:hover {
    background-color: #550909;
}

.btn.active {
    color: white;
    background-color: #550909; /* Optional: change background for contrast */
    border-bottom: 5px solid #332e2e;
    box-shadow: 0 0 20px rgb(133, 8, 8);
}


.live-time {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1rem;
    font-weight: bold;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
    user-select: none;
    animation: pulse 2s infinite alternate;
    z-index: 1000;
    text-align: center;
    line-height: 1.4;
}

@keyframes pulse {
    from {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    to {
        box-shadow: 0 8px 16px rgba(106, 142, 251, 0.4);
    }
}

/* Make sure the container position is relative */
.container {
    position: relative;
    /* Keep your existing container styles */
}
