.photo-request-status {
    margin: 0 18px 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

.photo-request-status strong {
    display: block;
    margin-bottom: 4px;
}

.photo-request-status p {
    margin: 0;
    color: var(--color-text-muted, #6b7380);
    line-height: 1.45;
}

.photo-request-status--approved {
    border-color: rgba(34, 197, 94, 0.35);
    background: rgba(34, 197, 94, 0.08);
}

.photo-request-status--pending {
    border-color: rgba(234, 179, 8, 0.35);
    background: rgba(234, 179, 8, 0.08);
}

.photo-request-status--rejected {
    border-color: rgba(225, 29, 46, 0.35);
    background: rgba(225, 29, 46, 0.08);
}

.photo-request-callout {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 0 18px 16px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

.photo-request-callout__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.photo-request-callout__text strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.35;
}

.photo-request-callout__text p {
    margin: 0;
    color: var(--color-text-muted, #6b7380);
    line-height: 1.5;
}

.photo-request-callout--protected {
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.1);
}

.photo-request-callout--protected .photo-request-callout__icon {
    background: rgba(99, 102, 241, 0.18);
    color: #a5b4fc;
}

.photo-request-callout--approved {
    border-color: rgba(34, 197, 94, 0.35);
    background: rgba(34, 197, 94, 0.08);
}

.photo-request-callout--approved .photo-request-callout__icon {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.photo-request-callout--pending {
    border-color: rgba(234, 179, 8, 0.35);
    background: rgba(234, 179, 8, 0.08);
}

.photo-request-callout--pending .photo-request-callout__icon {
    background: rgba(234, 179, 8, 0.15);
    color: #fbbf24;
}

.photo-request-callout--rejected {
    border-color: rgba(225, 29, 46, 0.35);
    background: rgba(225, 29, 46, 0.08);
}

.photo-request-callout--rejected .photo-request-callout__icon {
    background: rgba(225, 29, 46, 0.15);
    color: #f87171;
}

.photo-viewer-actions-hint {
    margin: -4px 0 0;
    font-size: 12px;
    line-height: 1.45;
    color: var(--color-text-muted, #6b7380);
    text-align: center;
}

.photo-request-bar[hidden] {
    display: none !important;
}

.photo-request-bar {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 24900;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(14, 16, 22, 0.95);
    border: 1px solid rgba(225, 29, 46, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
}

.photo-request-bar__count {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.photo-request-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 25000;
    align-items: flex-start;
    justify-content: center;
    padding: max(20px, 4vh) 20px 20px;
    overflow-y: auto;
}

.photo-request-modal.is-open {
    display: flex;
}

/* Foto-Viewer aktiv: Anfrage-Dialog muss sichtbar darüber liegen */
body.is-photo-request-open .photo-viewer-modal {
    z-index: 12000;
    pointer-events: none;
}

body.is-photo-request-open .photo-viewer-modal.is-behind-photo-request {
    z-index: 11900;
}

body.is-photo-request-open .photo-viewer-image-wrap.is-expanded {
    z-index: 11950;
}

body.is-photo-request-open .photo-request-modal.is-open {
    z-index: 25000;
    pointer-events: auto;
}

body.is-photo-request-open .photo-request-bar {
    z-index: 24900;
    pointer-events: auto;
}

.photo-request-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 7, 8, 0.92);
    backdrop-filter: blur(8px);
    z-index: 0;
}

.photo-request-modal__dialog {
    position: relative;
    width: min(520px, 100%);
    max-width: 520px;
    margin: 0;
    padding: 28px;
    background: var(--color-bg-elevated, #0e1014);
    border-radius: 20px;
    border: 1px solid rgba(225, 29, 46, 0.25);
    z-index: 1;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.photo-request-modal__dialog h3 {
    margin: 0 0 8px;
}

.photo-request-modal__lead {
    color: var(--color-text-muted, #6b7380);
    font-size: 13px;
    margin: 0 0 8px;
}

.photo-request-modal__list {
    margin: 0 0 16px;
    padding-left: 18px;
    font-size: 13px;
}

.photo-request-modal__dialog label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted, #6b7380);
    margin-bottom: 6px;
}

.photo-request-modal__dialog textarea {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 14px;
}

.photo-request-modal__dialog .btn {
    width: 100%;
}

.photo-request-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--color-text-muted, #6b7380);
    font-size: 24px;
    cursor: pointer;
}

.photo-request-modal__alert {
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(225, 29, 46, 0.12);
    color: #f87171;
    font-size: 13px;
}

.photo-request-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px;
    max-width: 100%;
    box-sizing: border-box;
}

.photo-request-card.is-pending {
    border-color: rgba(234, 179, 8, 0.35);
}

.photo-request-card.is-approved {
    border-color: rgba(34, 197, 94, 0.35);
}

.photo-request-card.is-partial {
    border-color: rgba(59, 130, 246, 0.35);
}

.photo-request-card.is-rejected {
    border-color: rgba(225, 29, 46, 0.35);
}

.photo-request-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.photo-request-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(225, 29, 46, 0.18);
    color: #ff4d5a;
    font-size: 14px;
    line-height: 1;
}

.photo-request-status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 6px;
    border-radius: 50%;
    background: #facc15;
    vertical-align: middle;
}

.photo-request-card__status--is-approved .photo-request-status-dot,
.photo-request-item__status--approved .photo-request-status-dot {
    background: #4ade80;
}

.photo-request-card__status--is-partial .photo-request-status-dot,
.photo-request-item__status--pending .photo-request-status-dot {
    background: #facc15;
}

.photo-request-card__status--is-rejected .photo-request-status-dot,
.photo-request-item__status--rejected .photo-request-status-dot {
    background: #f87171;
}

.photo-request-card__status--is-pending .photo-request-status-dot {
    background: #facc15;
}

.photo-request-card__status--is-cancelled .photo-request-status-dot {
    background: #9aa3b2;
}

.photo-request-item__status {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.photo-request-card__status {
    margin-left: auto;
    font-size: 12px;
}

.photo-request-card__body p {
    margin: 0 0 8px;
}

.photo-request-card__subtitle {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted, #8b96a8);
}

.photo-request-card__message {
    font-style: italic;
    color: var(--color-text-secondary, #9aa3b2);
    margin-bottom: 10px !important;
}

.photo-request-card__photos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.photo-request-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px;
    align-items: start;
}

.photo-request-item__thumb {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #000;
}

.photo-request-item__thumb img {
    display: block;
    width: 64px;
    height: 64px;
    max-width: 64px;
    max-height: 64px;
    object-fit: cover;
}

.photo-request-item__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
}

.photo-request-item__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.photo-request-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.photo-request-item--approved .photo-request-item__meta small {
    color: #4ade80;
}

.photo-request-item--rejected .photo-request-item__meta small {
    color: #f87171;
}

.photo-request-item--pending .photo-request-item__meta small {
    color: #facc15;
}
