/* Page-specific Styles - Extracted from inline styles */

/* Photo page H1 */
.photo-h1 {
    color: var(--pink-primary, #ec4899);
    font-weight: 600;
}

/* Contacts page links */
.links-contacts {
    font-size: 20px;
    color: black;
}

/* DMCA page code block */
.dmca-code-block {
    font-family: monospace;
    font-size: 0.9em;
}

/* Admin models/photos thumbnails */
.admin-thumbnail {
    height: 200px;
    object-fit: cover;
    cursor: pointer;
}

.admin-thumbnail-placeholder {
    height: 200px;
}

/* Admin models list avatar */
.admin-model-avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

/* Subscriptions overlay */
.subscriptions-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 5px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    gap: 10px;
}

.subscriptions-overlay-avatar {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

/* Photo loader */
.photo-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--pink-primary, #ec4899);
    opacity: 0.9;
}

