﻿.stepper-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.stepper {
    display: flex;
    align-items: center;
}

.step {
    display: flex;
    align-items: center;
    position: relative;
}

.step.active .circle {
    background-color: #007bff;
    color: #fff;
}

.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #000;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.bar-wrapper {
    flex: 1; /* Make bar stretch dynamically */
    display: flex;
    align-items: center;
    margin: 0 10px; /* Space between circle and bar */
}


/* FEATURED ROW */ 
.featured-pub-row {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}


/* GRID */
.pub-newsletter-container {
    gap: 10px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 601px) {
    .pub-newsletter-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .pub-newsletter-container {
        display: block;
    }
}

.pub-checkbox {
    border: 1.5px solid #ccc;
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    min-height: 64px;
    width: 100%;
    box-sizing: border-box;
    min-width: 0; /* 🔑 */
}

.pub-name {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
    min-width: 0;
    overflow-wrap: normal;
    word-break: normal;
}

/* FEATURED PUB — same width, slight emphasis */
.featured-pub {
    width: 12rem;
    transform: scale(1.05);
    border-color: #007bff;
    background-color: #f9fbff;
}

/* Checkbox */
.pub-checkbox-input {
    transform: scale(0.9);
}

/* Logo */
.pub-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.bar {
    height: 4px;
    width: 60px;
    background-color: #e0e0e0;
}

.bar.completed {
    background-color: #007bff;
}

#accordion-sub .accordion-button::after {
    display: none;
}

#accordion-sub .accordion-button {
    border: 1px solid #dee2e6;
    color: #1c1e21;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}

#accordion-sub .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
}

#accordion-sub .accordion-header input[type="radio"]:checked + .accordion-button {
    background-color: #e7f1ff !important;
    border: 2px solid #0d6efd !important;
    color: #0a58ca !important;
    box-shadow: 0 0 0 2px rgba(13,110,253,.15);
    font-weight: 600;
}

#accordion-sub .accordion-item {
    border: none;
    background-color: rgb(248, 249, 250) !important;
}

#accordion-sub .accordion-header {
    position: relative;
}

.subscription-radio {
    position: absolute;
    top: 1.25rem;
    left: 1rem;
    z-index: 10;
}

.notice-box {
    max-width: 600px;
    margin: 1rem auto;
    background-color: #fff;
    border: 2px solid #000;
}