.title {
    font-size: 16px;
}

.container {
    width: 100%;
    max-width: 1280px;
}

.alert {
    display: block;
    padding: 20px;
    border-left: 5px solid;
}

.approved {
    background-color: #D5F5E3;
    border-left-color: #2ECC71;
    color: #2ECC71;
}

.review-needed {
    background-color: #D6EAF8;
    border-left-color: #3498DB;
    color: #3498DB;
}

/* START: NAVBAR */
.navbar {
    background: #33C3F0;
    padding: 0;
    margin-top: -8px;
    margin-bottom: 15px;
    height: 50px;
    white-space: nowrap;
}

.navbar-item {
    display: inline-block;
    position: relative;
}

.navbar-item a,
.dropbtn {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 0 15px;
    display: inline-block;
    height: 50px;
}

.navbar-item a:hover,
.dropbtn:hover {
    color: #5A6A62;
}

.navbar-item a.active {
    color: #000;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background: #33C3F0;
    min-width: 180px;
    z-index: 10;
    padding: 0;
    margin: 0;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    line-height: normal;
    color: #fff;
    font-weight: normal;
}

.dropdown-content a.active {
    font-weight: bold;
}

.dropdown-content a:hover {
    background: #28A8D8;
    color: #000;
}

.dropdown:hover .dropdown-content {
    display: block;
}
/* END: NAVBAR */

.commented {
    background-color: #edf8d6;
    border-left-color: #3498DB;
    color: #3498DB;
}

.broadcast-form ul{
    list-style-type: none;
}

.broadcast-form ul label{
    font-weight: normal;
}

.pr-list-container, .reviewer-list-container{
    border: 1px #999 solid;
    margin-top: 20px;
    padding: 20px;
    height: 400px;
    border-radius: 10px;
    word-wrap: anywhere;
    word-break: break-all;
    overflow-y: scroll;
}

.reviewer-list-container{
    height: 150px;
    margin-bottom: 20px;
}

.alert-warning {
    background-color: #FCF3CF;
    border-left-color: #F1C40F;
    color: #F1C40F;
}

.closed {
    background-color: #F2D7D5;
    border-left-color: #C0392B;
    color: #C0392B;
}

.alert-error {
    background-color: #F2D7D5;
    border-left-color: #C0392B;
    color: #C0392B;
}

.merged {
    background-color: #E5D4F1;
    border-left-color: #C0392B;
    color: #982bc0;
}

.changes-requested {
    background-color: #f0e1d3;
    border-left-color: #C0392B;
    color: #c0702b;
}

.select-dashboard {
    width: 100%;
    padding: 8px;
    border: 1px #999 solid;
    border-radius: 2px;

}

.filter-wrapper {
    margin-top: 23px;
}

.button {
    margin-left: 0px;
}

button:disabled, button[disabled]{
    opacity: 0.4;
    pointer-events: none;
}

.dashboard-issues {
    margin-left: 70px;
}

.table-align {
    vertical-align: baseline;

    td:first-child,
    th:first-child {
        padding-left: 15px;
    }

    td:last-child {
        padding-right: 10px;

    }
}

.table-striped tbody:nth-child(odd) {
    background-color: #D6EAF8;
}

.table-align--sticky {
    position: sticky;
    top: 0;
    background-color: white;

    &.stuck {
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.04);
    }
}

.dormant-row {
    color: red;
    background-color: #f7dbd8;
}

table {
    border-collapse: collapse;
}

tr {
    border-bottom: 1px solid #E1E1E1;
}

th, td {
    border-bottom: none;
}

.reviewers-cell {
    display: flex;
    flex-flow: column;
    gap: 4px;
    margin: 0;
    white-space: nowrap;
}

.reviewers-cell select {
    margin: 0;
    height: unset;
}

.reviewers-row {
    display: grid;
    grid-template-columns: auto 1fr auto 100px;
    gap: 4px;
    align-items: center;
    position: relative;
}

.reviewers-row--active::before {
    position: absolute;
    top: -2px;
    left: -6px;
    right: -6px;
    bottom: -2px;
    content: "";
    background-color: #D6EAF8;
    border-radius: 4px;
}

.reviewers-row--active > * {
    z-index: 1;
}


.row-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.align-baseline {
    align-items: baseline;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;

    select {
        margin-bottom: 0;
    }
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-row input {
    padding: 10px 16px;
    border-radius: 5px;
    border: 1px solid #D9D9D9;
    font: 400 15px / 22.5px "poppins", "Calibri";
}

.filter-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 25px;
}

.reviewer-stats-summary {
    margin-left: auto;
    text-align: right;
    font-size: 0.9em;
    margin-top: 25px;
}

.reviewer-stats-title {
    display: block;
    margin-bottom: 3px;
}

.stats-item {
    margin-right: 10px;
    font-weight: bold;
}

.stats-item-approved {
    color: green;
}

.stats-item-needs-review {
    color: blue;
}

.stats-item-needs-changes {
    color: darkgoldenrod;
}

.on-hold {
    background-color: #FFF9DB;
    border-left-color: #F1C40F;
    color: #B7950B;
}

/* Commit table column widths and wrapping */
.commit-title-cell {
    width: 50%;
    word-break: break-word;
    max-width: 0;
}
.commit-sha {
    color: #888;
    font-size: 0.95em;
    margin-left: 8px;
}
.commit-add-cell, .commit-del-cell {
    width: 15%;
    text-align: left;
}
.commit-date-cell {
    width: 20%;
    white-space: nowrap;
}

.w-15 { width: 15%; }
.w-20 { width: 20%; }
.w-50 { width: 50%; }
.mt-10 {
    margin-top: 10px;
}
