/* 
 * Niriv Portal Box Styles for Niriv Theme
 * Applies ONLY the gold silver masonry widget box shadow style to ALL white boxes
 */

/* Apply exact news scroll box shadow to ALL white boxes globally */
.bg-white {
    -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04);
    background: #ffffff;
    border: none !important;
}

/* Override ALL existing shadow classes */
.shadow-sm,
.shadow-md,
.shadow-lg,
.shadow-xl {
    -webkit-border-radius: 16px;
    border-radius: 16px;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04);
    background: #ffffff;
}

/* Remove ALL hover effects - keep same shadow */
.bg-white:hover {
    -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04) !important;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04) !important;
    transform: none !important;
}
