/* Start Menu Layout */
.start-menu-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 3rem;
    min-height: 100vh;
    background-color: #0052cc;
}

/* User Panel */
.user-panel {
    background-color: white;
    border-radius: 25px;
    padding: 2.5rem;
    width: 45%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.user-panel-title {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: bold;
}

.input-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* Input Fields */
.input-field {
    background-color: #ffb3b3;
    border: none;
    border-radius: 25px;
    padding: 1rem 2rem;
    width: 80%;
    font-size: 1.2rem;
    text-align: center;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.input-field:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.input-field:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 179, 179, 0.5);
}

.input-field::placeholder {
    color: rgba(51, 51, 51, 0.6);
}

/* Start Button */
.start-button {
    background-color: #ffb3b3;
    border: none;
    border-radius: 25px;
    padding: 1rem 2rem;
    width: 80%;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.start-button:hover:not(:disabled) {
    background-color: #ff9999;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.start-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .start-menu-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    .user-panel,
    .connection-panel {
        width: 100%;
    }
}

.connection-panel {
    background-color: #ffb3b3;
    border-radius: 25px;
    padding: 2rem;
    width: 40%;
    height: fit-content;
}

.connection-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.connection-icon {
    color: #00cc00;
    font-size: 2rem;
}

.connection-title {
    font-size: 2rem;
    color: #333;
    margin: 0;
}

.connection-log {
    background-color: white;
    border-radius: 15px;
    padding: 1rem;
    min-height: 200px;
    margin-top: 1rem;
} 