/* Partea Stângă: Panoul de Informații */
.info-panel {
    width: 35%;
    background: white;
    padding: 30px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

h1 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.subtitle {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Stil pentru imaginea etapei */
.stage-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.stage-image:hover {
    transform: scale(1.02);
}

.stage-title {
    color: #e67e22;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.stage-location {
    font-size: 0.9rem;
    color: #34495e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: bold;
}

.stage-desc {
    line-height: 1.6;
    color: #555;
    font-size: 1rem;
}

/* Butoanele de navigare (Jos în stânga) */
.controls {
    margin-top: auto;
    /* Le împinge jos */
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

button:hover {
    background-color: #2980b9;
}

button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

/* Partea Dreaptă: Harta */
#map {
    width: 65%;
    height: 100vh;
    z-index: 1;
}

/* Stil pentru bara de progres de sus */
.progress-container {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 10px;
    z-index: 1000;
    display: flex;
    gap: 5px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #bdc3c7;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #e67e22;
    transform: scale(1.2);
}