/* =============================================================================
   EduShop brand theme (logo: navy “Edu”, orange “Shop”, yellow accents)
   Loaded after style.css — use for app-specific tweaks
   ============================================================================= */
:root {
	--edushop-navy: #1e5a96;
	--edushop-navy-dark: #1a2b4b;
	--edushop-navy-hover: #163d66;
	--edushop-orange: #dd6b20;
	--edushop-orange-hover: #c05621;
	--edushop-yellow: #facc15;
}

/* Header Login: navy outline → solid on hover (replaces purple soft button) */
.navbar .btn-primary-soft {
	color: var(--edushop-navy) !important;
	background-color: rgba(30, 90, 150, 0.1) !important;
	border: 1px solid rgba(30, 90, 150, 0.25) !important;
	font-weight: 600;
}
.navbar .btn-primary-soft:hover,
.navbar .btn-primary-soft:focus,
.navbar .btn-primary-soft:active {
	color: #fff !important;
	background-color: var(--edushop-navy) !important;
	border-color: var(--edushop-navy) !important;
}

/* Nav links & icons */
.navbar-light .nav-link:hover,
.navbar-light .nav-link:focus {
	color: var(--edushop-navy);
}
.navbar-light .text-primary,
.navbar-light .nav-link .text-primary {
	color: var(--edushop-navy) !important;
}

/* Back to top / scroll affordances */
.back-top {
	background-color: var(--edushop-orange) !important;
}
.back-top:hover {
	background-color: var(--edushop-orange-hover) !important;
}

/* Header logo — larger than theme default (40px) */
.navbar-brand {
    padding-top: 10px;
    padding-bottom: 10px;
}
.navbar-brand .navbar-brand-item {
    display: block;
    width: auto !important;
    height: auto !important;
    max-height: 52px;
    max-width: min(300px, 48vw);
    object-fit: contain;
}
@media (min-width: 768px) {
    .navbar-brand .navbar-brand-item {
        max-height: 60px;
    }
}
@media (min-width: 1200px) {
    .navbar-brand .navbar-brand-item {
        max-height: 68px;
    }
}
header.header-sticky-on .navbar-brand .navbar-brand-item {
    max-height: 52px;
}

/* Auth / footer logos */
.auth-card img[src*="logo"],
img.h-50px[alt="logo"] {
    height: 72px !important;
    width: auto !important;
    max-width: 100%;
    object-fit: contain;
}
footer img.h-70px[alt="logo"] {
    height: 88px !important;
    width: auto !important;
}

/* Region of Bids */
.regions {
    background-color: #00a26c;
    background-image: url(map.svg);
    background-position: 100% 102%;
}

.regions .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 10px;
}

.regions .icon {
    margin-top: -5px;
    height: 20px;
    width: 20px;
}

/* Search */
.search {
    padding-top: 10px;
    padding-bottom: 10px;
}

.search .search-left {
    box-shadow: 5px 2px 4px -5px rgb(0 0 0 / 20%);
    border-right: 1px solid lightgray;
}

.search .label {
    color: #4a4a4a;
    font-size: 16px;
    font-weight: 600;
}

.search .empty {
    color: #9b9b9b;
    font-style: italic;
}

.search .search-right {
    width: 100%;
    box-shadow: 5px 2px 4px -5px rgb(0 0 0 / 20%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Result */
.result {
    background: #f5f5f6;
}

/* filtercss */
.bg-white {
    background-color: #fff!important;
}
.bor11 {
    border-bottom: 1px solid #ededed;
    padding: 9px 16px;
    cursor: pointer;
}
.containercheckbox {
    display: block;
    position: relative;
    padding-left: 21px;
    margin-bottom: 7px;
    cursor: pointer;
    font-size: 12px;
}
.containercheckbox span {
    font-weight: 400;
    font-size: 12px;
}

/* sign up */
.box{
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
}
.recommendation-component {
    flex: 0 0 340px;
    background: #FBFCFC;
    padding: 25px 20px;
}
.recommendation-component h2 {
    font-size: 13px;
    text-transform: uppercase;
}
.ng-scope {
    font-weight: 600;
    font-size: 12px;
    background-color: transparent;
    cursor: pointer;
}
.recommendation-panel {
    border: 1px solid #C4EBFC !important;
    border-radius: 6px;
    background: #fff;
    padding: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.cursor-pointer {
    cursor: pointer;
}
.recommendation-header {
    display: flex;
    justify-content: space-between;
}
.recommendation-panel h3 {
    color: #31708F;
    font-size: 15px;
    font-weight: 700;
    line-height: 23px;
    margin: 0 0 5px;
}
.recommendation-header img {
    position: relative;
    top: 6px;
    right: 9px;
    margin: 0 0 0 8px;
}
.recommendation-panel .recommendation-details {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 0 40px 0 0;
}
.recommendation-panel:after {
    position: absolute;
    background: rgba(0, 159, 193, 0.14);
    width: 82px;
    height: 82px;
    right: -11px;
    top: -15px;
    content: '';
    border-radius: 50%;
    box-shadow: 0 0 0 33px rgb(0 159 193 / 3%), 0 0 0 65px rgb(0 159 193 / 3%), 0 0 0 98px rgb(0 159 193 / 3%);
}

.margin-10{
    margin-left: 10px;
    margin-right: 10px;
}
