.photo-dropzone {
    width: 160px;
    height: 160px;
    border: 2px dashed rgba(148, 163, 184, 0.4);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color 0.15s ease, background-color 0.15s ease;
    background: var(--surface-2, rgba(11, 19, 32, 0.03));
}

.photo-dropzone:hover,
.photo-dropzone:focus-visible {
    border-color: #0d6efd;
}

.photo-dropzone.is-dragover {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.08);
}

.photo-dropzone.is-invalid {
    border-color: #dc3545;
}

.photo-dropzone-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
    padding: 0.5rem;
    color: #6c757d;
    background-size: cover;
    background-position: center;
}

.photo-dropzone-preview i {
    font-size: 1.75rem;
    opacity: 0.7;
}

.photo-dropzone-preview span {
    font-size: 0.75rem;
    line-height: 1.2;
}

.photo-dropzone-preview.has-image i,
.photo-dropzone-preview.has-image span {
    display: none;
}

.photo-upload-error {
    min-height: 0;
}

.photo-crop-container {
    width: 100%;
    height: 360px;
    background: #111;
}

.photo-crop-container img {
    display: block;
    max-width: 100%;
}
