#add-poster-image-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Upload-Button – Standard */
.add-poster-image {
    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;
    width: 100%;
}

/* Hover-Zustand */
.add-poster-image:hover {
    background: #f4f4f4;
    color: var(--primary-color);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
}

/* Uploading- oder Disabled-Zustand */
.add-poster-image.uploading,
.add-poster-image:disabled {
    background: #fff !important;
    color: var(--primary-color) !important;
    opacity: 1 !important;
    cursor: not-allowed;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
}

/* Icon-Farbe im aktiven/gesperrten Zustand */
.add-poster-image.uploading i,
.add-poster-image:disabled i {
    color: var(--primary-color) !important;
}

/* Statusanzeige unter dem Button */
#add-poster-image-container .status {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}
