.campaigns-filters {
    display: flex;
    gap: 32px;
}

/* Sidebar Filters */
.campaigns-filters .sidebar-filters {
    width: 300px;
}

.campaigns-filters .sidebar-filters h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2B2C2B;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.campaigns-filters .sidebar-filters .filter-group {
    border-bottom: 1px solid rgba(43, 44, 43, 0.3);
    margin-bottom: 24px;
}

.campaigns-filters .sidebar-filters .filter-group:last-child {
    border: none;
}

.campaigns-filters .sidebar-filters .filter-group h4 {
    color: rgba(43, 44, 43, 0.4);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

.campaigns-filters .sidebar-filters .filter-group .filter-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    cursor: pointer;    
}

.campaigns-filters .sidebar-filters .filter-group .filter-label .filter-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.campaigns-filters .sidebar-filters .filter-group .filter-label .filter-label-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #2B2C2B;
}

/** Campaign Catalog Main **/
.campaign-catalog-main {
    flex: 1 1 0;
}

/* Campaign Catalog Top Filters */
.clear-filters-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.clear-filters-list .clear-filter {
    background: rgba(43, 44, 43, 0.03);
    border-radius: 100px;
    color: rgba(43, 44, 43, 0.6);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 6px 12px;
    width: auto;
}

.clear-filters-list .clear-filter.clear-all-filters {
    background-color: transparent;
    border: 1px solid rgba(43, 44, 43, 0.1);
}

/* Campaign Results */
.campaign-filter-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Campaign Card */
.campaign-card {
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    animation: 0.4s ease-out backwards fadeIn;
    transform: translateY(0px);
    box-shadow: none;
}

.campaign-card:hover {
    animation: 0.4s ease-out backwards fadeIn;
    transform: translateY(-4px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

/** Campaign Most Popular */
.popular-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 32px;
}

.popular-card {
	border-radius: 16px;
	overflow: hidden;
	flex: 1 1 calc(33.333% - 13.333px);
}

.popular-card__top {
	display: flex;
    gap: 2px;
    justify-content: center;
	align-items: center;
	padding: 15px;
	font-size: 12px;
	font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.popular-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.popular-card__body {
	padding: 24px;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: #DED8CF;
}

.popular-card__tag {
	display: inline-block;
	border-radius: 100px;
	padding: 6px 12px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
    letter-spacing: -0.01em;
	margin-bottom: 12px;
}

.popular-card__title {
	color: #2B2C2B;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
}

.popular-card__divider {
	height: 1px;
	background: rgba(43, 44, 43, 0.2);
	margin: 24px 0 16px 0;
}

.popular-card__meta-label {
	color: rgba(43, 44, 43, 0.4);
	font-size: 12px;
	font-weight: 600;
    line-height: 1.6;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 2px;
}

.popular-card__meta-value {
	color: #2B2C2B;
	font-size: 14px;
	font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.popular-card__actions {
	margin-top: 16px;
}

/* Variants */
.popular-card--orange .popular-card__top { 
    background: #E59001; 
    color: #F3ECE2;
}
.popular-card--orange .popular-card__body { 
    background: rgba(253, 201, 121, 0.8);
}
.popular-card--orange .popular-card__tag {
	background: #EF5D0F;
	color: #F3ECE2;
}

.popular-card--green .popular-card__top { 
    background: #B4E148; 
    color: #2B2C2B; 
}
.popular-card--green .popular-card__body {
    background: #F0FCD8;
}
.popular-card--green .popular-card__tag {
	background: #007A31;
	color: #F3ECE2;
}

.popular-card--blue .popular-card__top { 
    background: #0066FF; 
    color: #F3ECE2;
}
.popular-card--blue .popular-card__body { 
    background: rgba(166, 196, 252, 0.7);
}
.popular-card--blue .popular-card__tag {
	background: #0A46CC;
	color: #F3ECE2;
}

@media (max-width: 992px) {
	.popular-card { flex: 1 1 100%; }
}

/* Campaign Card */
.campaign-card-content {
    border: 1px solid #DED8CF;
    border-radius: 16px;
    padding: 20px;
}

.campaign-card-content .campaign-card-header {
    margin-bottom: 20px;
}

.campaign-card-header .campaign-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.campaign-title h3 {
    font-size: 20px;
    font-weight: 500;
    color: #2B2C2B;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.campaign-title .campaign-hpe-solution {
    border: 1px solid #5179F7;
    border-radius: 100px;
    padding: 6px 12px;
    color: #5179F7;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.campaign-description {
    font-size: 14px;
    font-weight: 400;
    color: rgba(43, 44, 43, 0.8);
    line-height: 1.6;
    letter-spacing: -0.01em;
    margin: 0;
}

.campaign-card-body {
    display: flex;
    gap: 32px;
    margin-bottom: 20px;
}

.campaign-card-body .campaign-thumbnail {
	border-radius: 12px;
    width: 225px;
	height: 169px;
    flex: 1 0 auto;
	overflow: hidden;
}

.campaign-card-body .campaign-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.campaign-card-body .campaign-infos {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.campaign-infos .campaign-info-col {
    display: flex;
    gap: 32px;
}

.campaign-infos .campaign-info {
    flex: 1;
}

.campaign-info h4 {
    color: #FFA000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.campaign-info p,
.campaign-info ul li {
    color: rgba(43, 44, 43, 0.8);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.campaign-info ul {
    margin: 0;
    padding-left: 24px;
}

.campaign-card-content .divider {
    width: 100%;
    height: 1px;
    background: #DED8CF;
    margin-top: 20px;
    margin-bottom: 20px;
}

.campaign-tactics {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.campaign-tactics-title {
    color: rgba(43, 44, 43, 0.4);
    font-size: 12px;    
    font-weight: 600;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.campaign-tactics-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.campaign-tactic-tag {    
    border-radius: 3px;
    background: rgba(255, 160, 0, 0.05);
    border: 1px solid rgba(255, 160, 0, 0.1);
    color: #FFA000;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    padding: 2px 8px;
}

/** Campaign Wizard */
/* Campaign Wizard Topbar */
.wizard-topbar {
    margin-bottom: 48px;
}

.wizard-topbar .steps {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.wizard-topbar .steps .step {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    padding: 0 80px;
    position: relative;
}

.wizard-topbar .steps .step::before {
    content: "";
    background: #DED8CF;
    position: absolute;
    left: 0;
    top: 18px;
    width: 100%;
    height: 2px;
    transform: translateX(-50%);
    z-index: 1;
}

.wizard-topbar .steps .step:first-child::before {
    display: none;
}


.wizard-topbar .steps .circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #DED8CF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    z-index: 2;
}

.wizard-topbar .steps .label {
    color: rgba(43, 44, 43, 0.5);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    z-index: 2;
}

.wizard-topbar .steps .step.active .circle {
    background: #f5a400;
    color: #FFFFFF;
    font-weight: 700;
}

.wizard-topbar .steps .step.active .label {
    color: #FFA000;
}

.wizard-topbar .steps .step.active::before {
    background: #FFA000;
}

/* Wizard Content */
.wizard-main {
    border: 1px solid #DED8CF;
    border-radius: 24px;
    padding: 56px;
}

.wizard-main .wizard-step {
    display: none;
}

.wizard-main .wizard-step.active {
    display: block;
}

.wizard-main .wizard-header {
    display: flex;
    gap: 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.wizard-header .wizard-step-title {
    color: #2B2C2B;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

.wizard-header .wizard-step-description {
    color: #2B2C2B;
    font-size: 20px;
    line-height: 1.5;
}

.wizard-content .wizard-filters {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}

.wizard-filters.budget-filters .filter-label {
    width: 300px;
}

.wizard-filters.hpe-solution-filters .filter-label {
    width: 300px;
}

.wizard-filters.product-filters .filter-label {
    width: 404px;
}

.wizard-filters.hpe-solution-filters {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.wizard-filters.product-filters {
    max-width: 828px;
    margin-left: auto;
    margin-right: auto;
}

.wizard-filters .filter-label {
    display: flex;
    cursor: pointer;
    user-select: none;
    margin: 0;
}

.wizard-filters .filter-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18.5px 23px;
    border-radius: 16px;
    border: 1px solid #DED8CF;
    transition: all 0.3s ease;
    width: 100%;
}

.wizard-filters.budget-filters .filter-label {
    height: 142px;
}

.wizard-filters.budget-filters .filter-label .filter-content {
    justify-content: center;
}

/* .wizard-filters.budget-filters .filter-label:nth-child(1) .filter-content {
    border-color: #FFA000;
}

.wizard-filters.budget-filters .filter-label:nth-child(2) .filter-content {
    border-color: #BEDF62;
}

.wizard-filters.budget-filters .filter-label:nth-child(3) .filter-content {
    border-color: #5179F7;
} */

.wizard-filters .campaign-filter-radio {
    display: none;
}

.wizard-filters .filter-label-text {
    color: #2B2C2B;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.wizard-filters .filter-label:has(.filter-checkbox:checked) .filter-content {
    border-color: #2B2C2B;    
}

.wizard-filters.budget-filters .filter-label:has(.filter-radio:checked) .filter-content {
    border-color: #FFA000;
}

.wizard-filters.budget-filters .filter-label:has(.filter-radio:checked) .filter-content .filter-label-text {
    color: #FFA000;
}

.wizard-filters .filter-label:hover .filter-content {
    border-color: #2B2C2B !important;
}

.wizard-filters.budget-filters .filter-label:hover .filter-content {
    border-color: #FFA000 !important;
}

.wizard-filters.budget-filters .filter-label:hover .filter-content .filter-label-text {
    color: #FFA000;
}

.wizard-content .wizard-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 11px;
}

.wizard-error {
    display: none;
    text-align: center;
    color: #FFA000;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
}

/** Partner Dashboard */
.partner-dashboard {
    
}

.partner-dashboard .stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-dashboard .stats-grid .stat-card {
    flex: 1 1 0;
    border: 1px solid #DED8CF;
    border-radius: 16px;
    padding: 24px;
    width: 100%;
}

.partner-dashboard .stats-grid .stat-card .stat-label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partner-dashboard .stats-grid .stat-card .stat-value {
    color: #2B2C2B;
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-top: 32px;
}

.partner-dashboard .stats-grid .stat-card .stat-meta {
    color: rgba(43, 44, 43, 0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 4px;
}

.partner-dashboard .stats-grid .stat-card.stat-card--orange {
    background-color: rgba(253, 201, 121, 0.8);
}

.partner-dashboard .stats-grid .stat-card.stat-card--green {
    background-color: #F0FCD8;
}

.partner-dashboard .stats-grid .stat-card.stat-card--blue {
    background-color: rgba(166, 196, 252, 0.6);
}

.partner-dashboard .stats-grid .stat-card.stat-card--purple {
    background-color: rgba(145, 126, 236, 0.4);
}

.partner-dashboard .stats-grid .stat-card.stat-card--orange .stat-label {
    color: #EF5D0F;
}

.partner-dashboard .stats-grid .stat-card.stat-card--green .stat-label {
    color: #007A31;
}

.partner-dashboard .stats-grid .stat-card.stat-card--blue .stat-label {
    color: #0A46CC;
}

.partner-dashboard .stats-grid .stat-card.stat-card--purple .stat-label {
    color: #8753F9;
}

.partner-dashboard .dashboard-content {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.partner-dashboard .dashboard-content .recent-campaigns,
.partner-dashboard .dashboard-content .kpi-panel {
    border: 1px solid #DED8CF;
    border-radius: 16px;
    flex: 1 1 0;
    padding: 32px;
    width: 100%;
}

.recent-campaigns .section-header,
.kpi-panel .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 42px;
}

.recent-campaigns .section-title,
.kpi-panel .section-title {
    color: #000000;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0;
}

.recent-campaigns .section-link {
    color: #EF5D0F;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-campaigns .campaign-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-campaigns .campaign-list .campaign-card {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
}

.recent-campaigns .campaign-list .campaign-card .campaign-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.recent-campaigns .campaign-list .campaign-card .campaign-title {
    color: #2B2C2B;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
}

.recent-campaigns .campaign-list .campaign-card .campaign-status {
    border-radius: 100px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
    padding: 6px 12px;
}

.recent-campaigns .campaign-list .campaign-card .campaign-status.campaign-status--completed {
    background-color: rgba(0, 122, 49, 0.1);
    color: #007A31;
}

.recent-campaigns .campaign-list .campaign-card .campaign-status.campaign-status--new {
	background-color: rgba(81, 121, 247, 0.1);
	color: #5179F7;
}

.recent-campaigns .campaign-list .campaign-card .campaign-status.campaign-status--active {
    background-color: rgba(255, 135, 30, 0.1);
    color: #FF871E;
}

.recent-campaigns .campaign-list .campaign-card .campaign-meta {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.recent-campaigns .campaign-list .campaign-card .campaign-meta > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.recent-campaigns .campaign-list .campaign-card .campaign-meta .meta-label {
    color: rgba(43, 44, 43, 0.4);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.recent-campaigns .campaign-list .campaign-card .campaign-meta .meta-value {
    color: #2B2C2B;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.recent-campaigns .campaign-list .campaign-card .campaign-actions {
    display: flex;
    gap: 12px;
}

.recent-campaigns .campaign-list .campaign-card .campaign-actions .btn {
    padding: 11px 47px;
    width: auto;
}

.partner-dashboard .dashboard-content .kpi-panel {
    position: relative;
    padding-bottom: 110px;
}

.kpi-panel .kpi-panel-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
}

.partner-dashboard .overall-performance {
    border: 1px solid #DED8CF;
    border-radius: 16px;
    padding: 32px;
    margin-top: 40px;
}

.overall-performance .overall-performance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 38px;
}

.overall-performance .overall-performance-title {
    color: #000000;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0;
}

.overall-performance .overall-performance-download {
    color: #EF5D0F;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.overall-performance .overall-performance-quarters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.overall-performance .overall-performance-quarters .quarter-card {
    background-color: #F3ECE2;
    flex: 1 1 0;
    border: 1px solid #DED8CF;
    border-radius: 16px;
    padding: 24px;
    width: 100%;
}

.overall-performance .overall-performance-quarters .quarter-card .quarter-card-value {
    color: #FF871E;
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.overall-performance .overall-performance-quarters .quarter-card .quarter-card-label {
    color: rgba(43, 44, 43, 0.7);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.overall-performance .overall-performance-kpis {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}

.overall-performance .overall-performance-kpis .kpi-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 32px;
    width: 33.333%;
}

.overall-performance .overall-performance-kpis .kpi-card .kpi-card-value {
    color: #2B2C2B;
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.overall-performance .overall-performance-kpis .kpi-card .kpi-card-label {
    color: rgba(43, 44, 43, 0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

/* Radio / Checkbox */
input[type="checkbox"].campaign-filter-checkbox,
input[type="radio"].campaign-filter-radio,
.form-control input[type="checkbox"],
.form-control input[type="radio"] {
    flex: 0 1 auto;
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(43, 44, 43, 0.15) !important;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    padding: 0;
}

input[type="checkbox"].campaign-filter-checkbox::after,
input[type="radio"].campaign-filter-radio::after,
.form-control input[type="checkbox"]::after,
.form-control input[type="radio"]::after {
    content: "✓";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    opacity: 0;
}

input[type="checkbox"].campaign-filter-checkbox:checked,
input[type="radio"].campaign-filter-radio:checked,
.form-control input[type="checkbox"]:checked,
.form-control input[type="radio"]:checked {
    background: #2B2C2B;
    border-color: #2B2C2B !important;
}

input[type="checkbox"].campaign-filter-checkbox:checked::after,
input[type="radio"].campaign-filter-radio:checked::after,
.form-control input[type="checkbox"]:checked::after,
.form-control input[type="radio"]:checked::after {
    opacity: 1;
}

/* Form Group */
.form-group {
    margin-bottom: 32px;
}

.form-group .form-label {
    color: rgba(43, 44, 43, 0.8) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.6;
    margin-bottom: 8px;
}

.form-group input[type="number"],
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="search"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group textarea,
.form-group select.form-select {
    background-color: transparent;
    border-radius: 6px !important;
    border: 1px solid rgba(43, 44, 43, 0.2) !important;
    color: #2B2C2B;    
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    padding: 13px 16px;
    width: 100%;
}

select.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    background-color: transparent;
    background-image: url('data:image/svg+xml,<svg width="16" height="9" viewBox="0 0 16 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path opacity="0.8" d="M14.5303 0.530336L7.53027 7.53033L0.530273 0.530335" stroke="%232B2C2B" stroke-width="1.5"/></svg>');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px 9px;
    position: relative;
}

select.form-select::-ms-expand {
    display: none; 
}

.form-group input[type="number"] {
    background-image: url('data:image/svg+xml,<svg width="12" height="17" viewBox="0 0 12 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path opacity="0.8" d="M10.533 6.11538L5.53296 1.06592L0.532959 6.11538" stroke="%232B2C2B" stroke-width="1.5"/><path opacity="0.8" d="M10.533 10.1154L5.53296 15.1649L0.532959 10.1154" stroke="%232B2C2B" stroke-width="1.5"/></svg>');
    background-repeat: no-repeat;
    background-size: 12px 17px;
    background-position: right 17px center;
}

.form-group input[type="number"]::-webkit-inner-spin-button,
.form-group input[type="number"]::-webkit-outer-spin-button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.form-grid .form-group {
    flex: 1 1 0;
    width: 100%;
}

.form-control {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.form-control label {
	display: inline-flex;
	align-items: flex-start;
	gap: 8px;
	color: #2B2C2B;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: -0.01em;
	margin: 0;
}

.form-help {
	color: rgba(43, 44, 43, 0.8);
	font-size: 14px;
    font-weight: 600;
	line-height: 1.6;
	margin-top: 16px;
}

.message {
	color: #2B2C2B;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	margin-top: 16px;
}

.message.success {
	color: #007A31;
}

.message.error {
	color: #FFA000;
}

/* Buttons */
.btn {
    border: 1px solid transparent;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    width: 129px;
    padding: 13px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn.btn-full {
    display: block;
    width: 100%;
}

.campaign-btn-primary {
    background-color: #2B2C2B;
    border-color: rgba(43, 44, 43, 1);
    color: #FFFFFF;
}

.campaign-btn-primary:hover {
    background-color: transparent;
    color: #2B2C2B;
}

.campaign-btn-secondary {
    background-color: transparent;
    border-color: rgba(43, 44, 43, 0.5);
    color: #2B2C2B;
}

.campaign-btn-secondary:hover {
    background-color: #2B2C2B;
    color: #FFFFFF;
}

/* Responsive: Tablet (<= 992px) */
@media (max-width: 992px) {
    .campaigns-filters {
        flex-direction: column;
        gap: 24px;
    }

    .campaigns-filters .sidebar-filters {
        width: 100%;
    }

    .wizard-main {
        padding: 32px;
    }

    .wizard-topbar .steps .step {
        padding: 0 32px;
    }

    /* Keep fixed widths; flex-wrap will produce 2 columns as space allows */
    .wizard-filters.budget-filters,
    .wizard-filters.hpe-solution-filters,
    .wizard-filters.product-filters {
        justify-content: center;
    }

    .campaign-card-body {
        gap: 20px;
    }

    .campaign-card-body .campaign-thumbnail {
        width: 200px;
    }

    .partner-dashboard .stats-grid .stat-card,
    .overall-performance .overall-performance-quarters .quarter-card,
    .overall-performance .overall-performance-kpis .kpi-card {
        flex: 1 1 calc(50% - 20px);
        width: 50%;
    }

    .partner-dashboard .dashboard-content {
        flex-direction: column;
    }
}

/* Responsive: Mobile (<= 768px) */
@media (max-width: 768px) {
    .campaigns-filters {
        gap: 16px;
    }

    .wizard-main {
        padding: 20px;
    }

    .wizard-topbar {
        margin-bottom: 32px;
    }
    
    /* .wizard-topbar .steps {
        flex-direction: column;
        gap: 16px;
    } */

    /* .wizard-topbar .steps .step {
        padding: 0;
    } */

    /* .wizard-topbar .steps .step::before {
        display: none;
    } */

    .wizard-header .wizard-step-title {
        font-size: 22px;
    }

    .wizard-header .wizard-step-description {
        font-size: 16px;
    }

    .wizard-filters.budget-filters .filter-label,
    .wizard-filters.hpe-solution-filters .filter-label,
    .wizard-filters.product-filters .filter-label {
        width: 100%;
    }

    .wizard-content .wizard-actions {
        flex-direction: column;
    }

    .wizard-content .wizard-actions .btn {
        width: 100%;
    }

    .campaign-card-body {
        flex-direction: column;
    }

    .campaign-card-body .campaign-thumbnail {
        width: 100%;
    }

    .campaign-infos .campaign-info-col {
        flex-direction: column;
        gap: 16px;
    }

    .recent-campaigns .section-header, 
    .campaign-details .section-header,
    .overall-performance .overall-performance-header {
        gap: 20px;
        flex-direction: column;
    }

    .form-grid {
        flex-direction: column;
        gap: 0;
    }
}