    .error-page {
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .error-page h1 {
        font-size: 8rem;
        font-weight: bold;
        color: #dc3545;
    }

    .error-page h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .error-page p {
        color: #6c757d;
        margin-bottom: 1.5rem;
    }


    .blur-search {
        filter: blur(3px);
        pointer-events: none;
    }

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: #1177bb;
    }

    .photo-item {
        max-width: 200px;
        display: inline-block;
    }



    #listPhoto {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px;
        justify-content: center;
    }

    .photo-container {
        position: relative;
        width: 200px;
        height: 200px;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .photo-container:hover {
        transform: scale(1.05);
    }

    .photo-item {
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }

    .photo-container:hover .photo-item {
        opacity: 0.8;
    }

    .photo-overlay {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 12px;
    }

    .no-photo {
        color: #666;
        font-style: italic;
        text-align: center;
        width: 100%;
    }

    .fullscreen-photo {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        display: none;
    }

    .fullscreen-photo img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        border-radius: 8px;
        display: block;
        margin: auto;
        float: none !important;
    }
