/* Przykładowe zielone akcenty */

/* 1. Zielone przyciski */
.btn-green,
button.btn-green {
    background-color: #2C572A; /* Kolor bazowy zieleni */
    border: none;
    color: #fff;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-weight: 500;
    font-size: 16px;
}
.btn-green:hover,
button.btn-green:hover {
    background-color: #43a047; /* Ciut ciemniejszy odcień przy hover */
}

/* 2. Zielone linki */
a.green-link {
    color: #388e3c;
    text-decoration: none;
    font-weight: 600;
}
a.green-link:hover {
    color: #2e7d32; /* Przyciemniony kolor na hover */
    text-decoration: underline;
}

/* 3. Zielone akcenty w nagłówkach i podkreśleniach */
h2.green-title {
    color: #2C572A;
    border-left: 4px solid #2C572A;
    padding-left: 10px;
    margin-bottom: 20px;
}

.green-underline {
    display: inline-block;
    position: relative;
    padding-bottom: 3px;
}
.green-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #4caf50;
}

/* 4. Zielone tło sekcji */
.section-green {
    background-color: #e8f5e9; /* Jasne, pastelowe tło */
    padding: 40px 20px;
    border-radius: 6px;
}

/* 5. Zielone obramowania lub cienie (np. kafelki) */
.green-box {
    border: 1px solid #c8e6c9;
    padding: 20px;
    border-radius: 6px;
    background-color: #ffffff;
    box-shadow: 0 0 5px rgba(60, 179, 113, 0.1);
}
