/* Assistant Page Styles */
.assist-container {
    height: 100vh;
    overflow: hidden;
    padding-top: 100px;
}

.assist-content {
    height: calc(100% - 80px);
}

/* Mobile-optimized buttons */
.assist-button {
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
}

.assist-button-large {
    height: 120px;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 15px;
}

.assist-button-medium {
    height: 80px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 15px;
}

.assist-button-small {
    height: 60px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 15px;
}

.assist-button-mini {
    height: 50px;
    font-size: 1rem;
    font-weight: bold;
}

/* Event header gradient */
.assist-header {
    background: linear-gradient(135deg, var(--mud-palette-primary) 0%, var(--mud-palette-primary-darken) 100%);
}

.assist-header-text {
    color: white;
    font-weight: bold;
}

/* Status display */
.assist-status {
    text-align: center;
}

/* Card selection buttons */
.assist-card-button {
    height: 60px;
    font-weight: bold;
    flex: 1;
}

/* Large input fields for mobile */
.assist-input {
    font-size: 1.5rem;
}

/* Hide number input spinners for cleaner mobile look */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}


.mud-input-root {
    font-size: 1.2rem !important;
}
