@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

.bg-dark {
    background-color: #FA0;
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #FA0;
}

.content {
    padding-top: 1.1rem;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

@media (max-width: 767.98px) {
    .pubTekMerchWords {
        max-width: 200px;
    }

    .pubTekMerchLogo {
        max-width: 200px;
    }
}

@media (min-width: 768px) {
    .pubTekMerchWords {
        max-width: 400px;
    }

    .pubTekMerchLogo {
        max-width: 400px;
    }
}

.content-light {
    background-color: white;
}

.section-light {
    width: 100vw; 
    background-color:white;
}

.section-light-yellow {
    width: 100vw;
    background-color: #f6f1e8;
}

/* ======================================
   BLAZORIZED ADMIN PORTAL FIXES
   ====================================== */

/* Fix sortable hover colors for dark table headers */
.table-dark .sortable:hover,
.table-dark th.sortable:hover {
    background-color: rgba(255,255,255,0.25) !important;
    color: #ffffff !important;
    transition: all 0.2s ease-in-out;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3);
}

.table-dark .sortable,
.table-dark th.sortable {
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    position: relative;
}

/* Add subtle hover effect for light table headers too */
.table-light .sortable:hover,
.table-light th.sortable:hover {
    background-color: rgba(0,0,0,0.05) !important;
    transition: all 0.2s ease-in-out;
}

/* Ensure sortable columns are clearly clickable */
.sortable {
    user-select: none;
}

.sortable:hover {
    opacity: 1;
}

/* Add visual indicator that columns are sortable */
.sortable::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 3px solid rgba(255,255,255,0.5);
    opacity: 0.6;
}

.table-light .sortable::after {
    border-bottom-color: rgba(0,0,0,0.3);
}

.sortable:hover::after {
    opacity: 1;
}

/* Product card hover effects */
.product-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1px solid rgba(0,0,0,0.125);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: rgba(0,123,255,0.25);
}

/* Enhanced button hover effects */
.btn {
    transition: all 0.2s ease-in-out;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Improved pagination styling */
.page-link {
    border: none;
    background: none;
    transition: all 0.2s ease-in-out;
}

.page-item.active .page-link {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    box-shadow: 0 2px 4px rgba(0,123,255,0.25);
}

.page-link:hover {
    background-color: rgba(0,123,255,0.1);
    transform: translateY(-1px);
}


