body {
    font-family: 'Poppins', sans-serif;
    background-color: #1A1A2E;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.table {
    position: relative;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #4B8BBE, #5C6784);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.buzzer {
    width: 100px;
    height: 100px;
    background: red;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    cursor: pointer;
}

.profile {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #2E3B4E;
    border: 3px solid #4B8BBE;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform-origin: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.profile div {
    font-size: 0.8rem;
    margin-top: 5px;
    text-align: center;
    color: #ffffff;
}
