﻿/* Modern Card Design */
.content_entry {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Photobox Styling */
.photobox_image {
    border-radius: 12px;
    object-fit: contain;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

    .photobox_image:hover {
        transform: scale(1.03);
    }

