/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

#app h3 {
    line-height: 28px;
    font-weight: 800;
}

#app button {
    padding: 5px 15px 5px;
    background: #1a1a1a;
    color: #fff;
    transition: all 300ms ease-out;
    -webkit-transition: all 300ms ease-out;
}

#app button:hover {
    background: #f7bf3b;
}

#app select {
    padding: 0 !important;
    margin-bottom: 0 !important;
    min-width: 200px;
    max-width: 250px;
    border-color: #cfcfcf;
    border-radius: 0;
}

#app label {
    font-weight: 600;
}

#app table td.td-center {
    vertical-align: middle;
    text-align: center;
}

#app svg {
    transform: scale(1.4);
}

#app svg.facebook {
    color: #4267B2;
}

#app svg.book {
    font-size: 22px;
    color: #1a1a1a;
}

#app svg.globe {
    color: #1a1a1a;
}

.bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom p {
    font-size: 17px;
    padding: 0 !important;
    margin: 0 !important;
}

.filters {
    display: flex;
    justify-content: space-between;
}

.pagination {
    align-items: center;
}

.pagination span {
    font-size: 17px;
    font-weight: 700;
}

.pagination button{
    margin: 0 !important;
}

.pagination button:disabled{
    opacity: 0.7;
}
.pagination button:disabled:hover{
    background-color: #1a1a1a;
    cursor: not-allowed;
}

 .table {
    border: 1px solid #ededed !important;
 }

 .content th,.content td {
    border: 2px solid #dee2e6 !important;
}

 table.table > thead > tr > th {
    background: #f9bf3b !important;
    color: #fff;
    font-weight: bold;
    padding: 6px 14px;
    font-size: 16px;
 }
 table.table > tbody > tr > th {
    background: #e3e3e3 !important;
 }

 .school-view-wrapper p {
    padding: 0 0 10px 0 !important;
 }

 .schools-in-county, .schools-similar-results {
    display: flex;
    justify-content: space-around;
    align-items: center;
 }
 .schools-in-county div, .schools-similar-results div {
    cursor: pointer;
    border: 1px solid #d3d3d3;
    padding: 8px 12px;
    max-width: 200px;
    border-radius: 2px;
 }

 /* Mobile changes */

 @media (max-width: 768px) {
    .filters {
        flex-direction: column;
    }
    .filters div {
        margin-top: 10px;
    }
    .schools-in-county, .schools-similar-results {
        flex-direction: column;
     }
     .schools-in-county div, .schools-similar-results div {
        margin-top: 15px;
     }
     .school-view-wrapper .items > div {
        border-bottom: 1px solid #ddd;
        margin-bottom: 5px;
     }
 }