/* Logo Protection Styles */
#logo-container {
    position: relative;
    width: 90px;
    height: 90px;
    background-image: url('/assets/images/Urban Deals PNG Logoupdated.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.logo-protection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: transparent;
}

/* Prevent right-click on navbar */
.navbar {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* About Page Logo Protection */
/* About Page Logo Protection */
#about-logo-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 250px;
    background-image: url('/assets/images/Urban Deals PNG Logoupdated.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    user-select: none;
}

    /* Overlay for blocking right-click */
    #about-logo-container .logo-protection-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10;
        background: transparent;
        pointer-events: all;
    }

