.greetings-card {
    border: 2px solid #ff6a00;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.greetings-header {
    background: #0b1622;
    padding: 20px;
    text-align: center;
}
.greetings-header h2 {
    margin: 0;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 1px;
}
.greetings-body {
    padding: 25px;
}
.greetings-alert {
    margin-bottom: 20px;
}
.greetings-alert--error {
    color: red;
    font-weight: bold;
    text-align: center;
}
.greetings-alert--success {
    color: #16a34a;
    font-weight: 800;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/*
 * Na stronie pozdrowień używamy też klas z modułu chart-alert.
 * Podbijamy specyficzność, żeby komunikat sukcesu zawsze był zielony,
 * pogrubiony i wyśrodkowany.
 */
.chart-alert.greetings-alert--success,
.chart-alert.chart-alert--success.greetings-alert--success {
    color: #16a34a !important;
    font-weight: 800 !important;
    text-align: center !important;
}
.greetings-textarea-container {
    margin-bottom: 15px;
}
.greetings-textarea {
    width: 100%;
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 4px;
    resize: vertical;
    font-size: 14px;
    font-family: inherit;
}
.greetings-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.greetings-counter {
    width: 80px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #f8f9fa;
    color: #333;
    font-size: 16px;
}
.greetings-input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    font-size: 16px;
}
.greetings-footer {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}
.greetings-footer strong {
    color: #333;
}
.greetings-btn {
    width: 100%;
    background: #0b1622;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}
.greetings-btn:hover {
    background-color: #152a3d;
}
