.alert-success {
    background-color: #000000;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 16px;
    padding: 15px 20px;
    border-radius: 2px;
    margin-bottom: 10px;
    text-align: center;
}

/* Stylowanie okna cookie */
.cookie-info {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: rgba(51, 51, 51, 0.9); /* Przezroczystość 80% */
}

.cookie-info button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.cookie-info button:hover {
    background-color: #4444;
}

/* Stylowanie komunikatu podziÄkowania */
.thank-you {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333333;
    color: white;
    padding: 15px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1001;
}

.thank-you.show {
    opacity: 1;
}