.main-container-result {
    display: flex;
    justify-content: center;
    /* horizontal */
    align-items: center;
    /* vertikal */
}

.result-container {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 1rem;
    padding-left: var(--dist-l);
    padding-right: var(--dist-l);
    margin-top: var(--dist-s);
}

/* White Box */
.white-box {
    background: var(--bg);
    border-radius: 1rem;
    box-shadow: var(--shadow-l);
    padding: 2rem;
    margin-bottom: var(--dist-l);
    max-width: 60rem;
}

/* Results Screen */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: var(--dist-l);
    flex-wrap: wrap;
    gap: 1rem;
}

.results-title {
    margin-bottom: var(--dist-s);
    color: var(--text);
    line-height: 0.8;
}

.results-subtitle {
    color: var(--text-muted);
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
}

.action-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-m);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--primary);
    color: var(--bg);
}

.action-button:hover {
    color: var(--primary);
    background-color: var(--bg-light);
    box-shadow: var(--shadow-l);
}

@media (max-width: 767px) {
    .action-button {
        padding: 0.5rem;
    }

    .button-text {
        display: none;
    }
}

.action-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Results Grid */
.results-grid {
    display: grid;
    gap: var(--dist-l);
    margin-bottom: var(--dist-l);
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.result-card {
    background: var(--bg-light);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: var(--shadow-m);
    transition: transform 0.3s ease;
}

.result-card:hover {
    box-shadow: var(--shadow-l);
    transform: scale(1.0125);
}

.result-label {
    color: var(--text-muted);
}

.result-value {
    color: var(--text);
}

/* Images Section */
.images-section {
    margin-top: var(--dist-l);
}

.images-title {
    margin-bottom: var(--dist-l);
    color: var(--text-muted);
}

.images-grid {
    display: grid;
    gap: var(--dist-l);
}

@media (min-width: 768px) {
    .images-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 1024px) {
    .images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.image-card {
    background: var(--bg-light);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-m);
    transition: transform 0.3s ease;
    padding: 1rem;
}

.image-card:hover {
    box-shadow: var(--shadow-l);
    transform: scale(1.0125);
}

.image-card img {
    width: 100%;
    /* height: 22rem; */
    object-fit: contain;
    margin-top: var(--dist-s);
}

.image-caption {
    color: var(--text-muted);
}

.map-container {
    border-radius: 0.75rem;
    box-shadow: var(--shadow-m);
    background-color: var(--bg-light);
    transition: transform 0.3s ease;
    padding: 1rem;
    /*display: flex;
    flex-direction: column;*/
    height: 25vh;
}

.map-container:hover {
    box-shadow: var(--shadow-l);
    transform: scale(1.0125);
}

#map {
    height: 100%;
}