/* Container */
#gpx-upload,
#gpx-status {
    display: none;
}

#add-gpx-to-flyer-container {
    width: 100%;
    display: flex;
}

/* Hauptbutton */
.add-gpx-control-button {
    flex-grow: 1;
    width: 100%;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    transition: all 0.2s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hover-Zustand */
.add-gpx-control-button:hover {
    background: #f4f4f4;
    color: var(--primary-color);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
}

/* Klick-Zustand */
.add-gpx-control-button:active {
    background: #f4f4f4;
    color: var(--primary-color);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
}

/* Deaktiviert */
.add-gpx-control-button:disabled {
    opacity: 1 !important;
    background: #fff !important;
    cursor: not-allowed;
}

/* Aktive Zustände */
.add-gpx-control-button.processing {
    color: var(--primary-color) !important;
}

.add-gpx-control-button.success {
    color: var(--primary-color) !important;
}

.add-gpx-control-button.error {
    color: crimson !important;
}

/* Icon-Anzeige */
.add-gpx-control-button i {
    font-size: 16px;
}
