/* Stylizacja kontenera listy */
.matura-links-container {
    max-width: 100%;
    padding: 20px;
}

.matura-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Odstęp między przyciskami */
}

/* Stylizacja przycisku */
.matura-button {
    display: inline-block;
    width: 300px;
    height: 100px;
    background: linear-gradient(to top, #FFFFFF, #E6F3E6);
    border: 2px solid #006600;
    text-align: center;
    line-height: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #006600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
}

.matura-button:hover {
    background: linear-gradient(to top, #FFFFFF, #CCE5CC);
    color: #004D00;
    transform: scale(1.05);
}

.matura-button span {
    vertical-align: middle;
    display: inline-block;
    line-height: 100px; /* Wyśrodkowanie tekstu */
}

.matura-button .arrow {
    margin-left: 10px;
    vertical-align: middle;
}

/* Responsywność */
@media (max-width: 480px) {
    .matura-button {
        width: 100%;
        height: 80px;
        font-size: 28px;
        line-height: 80px;
    }
    .matura-button .arrow {
        margin-left: 5px;
    }
}