#add-poster-marker-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

#add-poster-marker-buttons {
    display: flex;
    gap: 10px;
}

/* Button-Design */
.add-poster-marker-button {
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in-out;
    flex: 1;
}

.add-poster-marker-button:hover {
    background: #f4f4f4;
    color: var(--primary-color);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
}

.add-poster-marker-button:disabled {
    background: #fff !important;
    color: var(--primary-color) !important;
    opacity: 1 !important;
    cursor: not-allowed;
}

/* Abbrechen-Button in Rot */
#cancel-poster-marker-button {
    border-color: red;
    color: red;
}

#cancel-poster-marker-button:hover {
    background: #fcecec;
    border-color: darkred;
    color: darkred;
}

/* Statusanzeige */
#add-poster-marker-status {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}
