/* Profile Summary Box Styles */
.profile-summary {
    /* display: none; */
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    width: 200px;
    font-size: 0.9rem;
    top: 40px;
    left: 0;
    z-index: 10;
}

.username {
    position: relative;
    cursor: pointer;
}

/* This will show the profile summary when hovering over the username */
.username:hover+.profile-summary {
    display: block;
}

.profile-summary:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.game-history table td {
    position: relative;
}


.timer-container {
    background-color: #333;
    border: 1px solid #ffd700;
    border-radius: 4px;
    padding: 2px 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-right: 4px;
}

.timer-icon {
    color: #ffd700;
    font-size: 14px;
}

.timer {
    color: #ffffff;
    font-family: monospace;
    font-size: 14px;
}

.timer-label {
    color: #ff4444;
    font-size: 12px;
    margin-right: 4px;
}

.timer-urgent {
    color: #ff4444;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0.5;
    }
}