/* Plik: medical_app/static/css/promotions.css */
/* --- Style dla treści promocji --- */
.offer-content {
    line-height: 1.7; /* Lepsze odstępy między liniami */
    color: #333;
}

.offer-content p {
    margin-bottom: 1em; /* Margines dolny dla każdego paragrafu */
}

.offer-content ul {
    list-style-type: disc; /* Styl listy: kropki */
    padding-left: 20px; /* Wcięcie listy */
    margin-bottom: 1em;
}

.offer-content li {
    margin-bottom: 0.5em; /* Odstęp między elementami listy */
}

.offer-content strong {
    color: #000; /* Pogrubiony tekst będzie czarny */
}

.offer-content em {
    opacity: 0.8; /* Lekko stonowana kursywa */
    text-align: center;
    display: block;
}

/* --- Styl dla naszego przycisku --- */
.promo-button {
    display: inline-block;
    background-color: #22b2ae;
    color: white !important;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none !important; /* DODAJ TĘ LINIĘ */
}

.offer-content .promo-button:hover {
    background-color: #1a8e8a; /* Ciemniejszy odcień po najechaniu */
}

/* --- Styl dla daty ważności promocji --- */
.promo-validity {
    text-align: center;
    margin-top: -0.5rem; /* Lekko podciąga tekst pod tytuł */
    margin-bottom: 1.5rem;
    font-weight: 300; /* Cieńsza czcionka */
    font-size: 1.1rem;
    color: #22b2ae; /* Kolor turkusowy, pasujący do przycisku */
}