body { padding-top: 0; }
.name-result, .team-result, .word-result {
    font-size: 1.2rem;
    margin-top: 20px;
    white-space: pre-line;
}
.copy-button { margin-left: 10px; }
.field.is-grouped .control { margin-bottom: 0; }

.h-100 {
    height: 100%;
} 

/* Switch styles */
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .2s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #00d1b2;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

/* Update the team-result styles */
.team-result .box {
    transition: all 0.2s ease;
    border: 1px solid #dbdbdb;
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.05);
    background: white;
}

.team-result .box:hover {
    box-shadow: 0 3px 5px rgba(10, 10, 10, 0.1);
    transform: translateY(-1px);
}

.team-result .rounded-bottom {
    border-radius: 0 0 6px 6px;
}

.team-result .content {
    line-height: 1.3;
}

.team-result .title {
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #dbdbdb;
}

.team-result .has-background-white {
    border-top: none;
}

.team-result .names-list {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Optional: Add this if you want to make the copy button more subtle */
.copy-button {
    transition: all 0.2s ease;
    opacity: 0.9;
}

.copy-button:hover {
    opacity: 1;
} 