/* Contact Sheet Layout for Phoca Gallery */
.phoca-gallery-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    background: black;
    padding: 20px;
}

/* Styling individual images to look like a film contact sheet */
.phoca-gallery-box img {
    width: 180px; /* Adjust based on your needs */
    height: auto;
    border: 5px solid black;
    padding: 5px;
    background: #222;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* Adding the "Kodak Safety Film" style text on top */
.phoca-gallery-box::before {
    content: "KODAK SAFETY FILM"; 
    font-family: monospace;
    color: white;
    font-size: 12px;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

/* Optional: Style Image Titles */
.phoca-gallery-box .phoca-gallery-title {
    font-size: 14px;
    color: white;
    text-align: center;
    margin-top: 5px;
}

/* Optional: Add numbering effect to simulate a film roll */
.phoca-gallery-box .phoca-gallery-item::after {
    content: attr(data-number);
    font-family: monospace;
    font-size: 12px;
    color: white;
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.phoca_thumb img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover; /* Ensures images maintain aspect ratio */
    max-width: 300px; /* Adjust based on your thumbnail settings */
}

.phoca_thumb a {
    display: block;
    text-align: center;
}

.phoca_thumb {
    display: flex;
    justify-content: center;
    align-items: center;
}
