.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: white;
}

.compare-intro {
    text-align: center;
    color: #c7cbd3;
    margin: -1rem auto 2rem;
    max-width: 720px;
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
}

form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

form label {
    font-weight: bold;
}

form select {
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid #ccc;
}

form button {
    padding: 0.5rem 1rem;
    background-color: #2ee6d6;
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #21c6b8;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background-color: #333;
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    border: 1px solid #555;
    text-align: center;
}

.comparison-table th {
    background-color: #444;
    font-weight: bold;
}

.table-responsive {
    width: 100%;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: #2ee6d6 #f1f1f1;
}

/* WebKit Browsers (Chrome, Safari, Edge) */
.table-responsive::-webkit-scrollbar {
    height: 15px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #2ee6d6;
    border-radius: 8px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #2ee6d6;
    border-radius: 8px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: #21c6b8;
}

@media (max-width: 885px) {
    form {
        flex-direction: column;
        align-items: center;
    }

    form label,
    form select,
    form button {
        width: 90%;
        max-width: 400px;
        margin: 0.5rem 0;
    }
}