.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    max-width: 600px;
}

.animated-button {
    background-color: #4CAF50;
    color: rgb(0, 0, 0);
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.animated-button:hover {
    background-color: #45a049;
    transform: scale(1.1);
}

select.animated-button {
    width: 100%;
    padding: 15px 32px;
    text-align: center;
    appearance: none; /* Tarayıcı varsayılan stilini kaldırır */
    -webkit-appearance: none; /* Safari ve Chrome için */
    -moz-appearance: none; /* Firefox için */
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

select.animated-button option {
    color: black;
    background-color: rgb(0, 0, 0);
}

@media (max-width: 600px) {
    .buttons {
        width: 100%;
    }

    .animated-button {
        width: 100%;
    }
}

/* Aşağı ok simgesi eklemek için */
select.animated-button::-ms-expand {
    display: none;
}

.select-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-container:after {
    content: '\25BC'; /* Aşağı ok simgesi */
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    color: white;
}

select.animated-button {
    padding-right: 40px; /* Aşağı ok simgesi için alan */
}