#vtc-app {
    max-width: 900px;
    margin: auto;
    font-family: Arial, sans-serif;
}

.vtc-types {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.vtc-types button {
    padding: 10px 20px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

.vtc-types button.active {
    background: #ffb300;
    color: #000;
}

.vtc-form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.vtc-form input,
.vtc-form button {
    padding: 12px;
    width: 100%;
    max-width: 250px;
}

#vtc-map {
    height: 350px;
    margin: 30px 0;
}

.vtc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.vtc-row img {
    height: 30px;
}

.vtc-order {
    background: #ffb300;
    padding: 6px 12px;
    text-decoration: none;
    color: #000;
}
.vtc-row {
    animation: fadeUp .4s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .vtc-form {
        flex-direction: column;
    }

    .vtc-row {
        flex-wrap: wrap;
        gap: 10px;
    }
}
