.generated-photo {
    width: 180px;
    max-width: 96vw;
    border-radius: 18px;
    cursor: pointer;
    transition: box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    display: block;
}

.modal {
    display: flex; align-items: center; justify-content: center;
    position: fixed; z-index: 9999;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(25, 25, 28, 0.97);
}

.modal.hidden { display: none; }

.modal-photo {
    max-width: 90vw; max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.36);
}

.close-modal {
    position: absolute; top: 40px; right: 60px;
    font-size: 42px; color: #fff; cursor: pointer;
    z-index: 2;
    font-family: Arial, sans-serif;
    user-select: none;
}

.chat-lastmsg.unread-highlight {
    color: var(--primary);
    font-weight: 600;
}