.speaking-container {
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.speaking-header {
    text-align: center;
    margin-bottom: 2rem;
}

.speaking-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.speaking-header p {
    color: #666;
    font-size: 1.1rem;
}

.conversation-area {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.topics-list {
    width: 250px;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 1rem;
}

.topics-list h2 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.topics-list ul {
    list-style: none;
}

.topics-list li {
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.topics-list li:hover {
    background: #eee;
}

.topics-list li.active {
    background: #000;
    color: white;
}

.practice-area {
    flex: 1;
    background: #f8f9fa;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scenario {
    text-align: center;
    margin-bottom: 2rem;
}

.scenario h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.scenario p {
    color: #666;
}

.start-btn {
    padding: 1rem 2rem;
    background: #000;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.start-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Add active state for navigation */
.nav-link.active {
    font-weight: 600;
    color: #000;
} 