/* Ensure placeholder text is always visible */
::placeholder {
    color: #6c757d !important;
    opacity: 1 !important;
}

::-webkit-input-placeholder {
    color: #6c757d !important;
    opacity: 1 !important;
}

::-moz-placeholder {
    color: #6c757d !important;
    opacity: 1 !important;
}

:-ms-input-placeholder {
    color: #6c757d !important;
    opacity: 1 !important;
}

.form-control::placeholder {
    color: #6c757d !important;
    opacity: 1 !important;
}

.form-select option[value=""] {
    color: #6c757d;
}

.session-controls {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
}

.session-controls button {
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.session-controls button:hover {
    opacity: 0.9;
}

.session-controls button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}