@charset "UTF-8";

.company-table {
    border-collapse: separate;
    width: 100%;
}

.company-table:nth-child(n+2) {
    margin-top: 40px;
}

.company.page-content {
    margin-top: 40px;
    padding-bottom: 80px;
}

.company-table th {
    width: 20%;
    padding: 15px;
    background-color: #b8d742;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
    vertical-align: middle;
    color: #fff;
}

.company-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.company-table tr:first-child th {
    border-radius: 20px 0 0 0;
}

.company-table tr:first-child td {
    border-radius: 0 20px 0 0;
    border-top: 1px solid #ddd;
}

.company-table tr:last-child th {
    border-radius: 0 0 0 20px;
}

.company-table tr:last-child td {
    border-radius: 0 0 20px 0;
    border-bottom: 1px solid #ddd;
}

@media (max-width: 768px) {
    .company.page-content {
        padding: 0 20px 40px;
    }

    .company-table th {
        width: 35%;
    }
}