table {
    width: 100%;
}

th, td {
    padding: 16px; /* Increased padding */
    text-align: center;
    color: white;
    font-weight: bold;
    border: 2px solid #15171a;
}

#request_button4 {
    margin-top: 60px; 
    padding: 4px 24px;
}

#request_button4:hover {
    background-color: #d41c2a;
}

.comparison_logo {
    justify-content: center;
    gap: .5rem;
    display: flex;
    align-items: center;
}

/* Sets the width for each header */
th:nth-child(1) { width: 20%; } 
th:nth-child(2) { 
    width: 40%;
    background-color: #2a2f35;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
} 
th:nth-child(3) { width: 20%; } 
th:nth-child(4) { width: 20%; }

/* The settings below are necessary to horizontally center the table */
td:nth-child(1) {width: 20%;}
td:nth-child(2) {
    width: 40%;
    background-color: #2a2f35;
}
td:nth-child(3) {width: 20%;}
td:nth-child(4) {width: 20%;}

@media (max-width: 767px) {
    #comparison_table_title {
        text-align: center;
    }

    th, td {
        font-size: 14px;
    }

    th:nth-child(1) { width: 25%; } 
    th:nth-child(2) { width: 25%; } 
    th:nth-child(3) { width: 25%; } 
    th:nth-child(4) { width: 25%; }

    td:nth-child(1) { width: 25%; }
    td:nth-child(2) { width: 25%; }
    td:nth-child(3) { width: 25%; }
    td:nth-child(4) { width: 25%; }
}