body {
    margin: 0;
    overflow: hidden;
}

#date-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 5px;
    z-index: 1001;
    display: flex;
    gap: 10px;
    align-items: center;
}

#date-controls label {
    color: white;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#date-controls input {
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 11px;
}

#date-controls input[type="color"] {
    padding: 2px;
    width: 40px;
    height: 24px;
    cursor: pointer;
}

#update-btn,
#reset-btn {
    background: #666;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 11px;
}

#update-btn:hover {
    background: #555;
}

#reset-btn:hover {
    background: #555;
}

#floating-team-header {
    display: none;
    align-items: center;
    justify-content: flex-start;
}