/*
|--------------------------------------------------------------------------
| DASHBOARD WRAPPER
|--------------------------------------------------------------------------
*/

.bcn-dashboard {
    width: 100%;
    margin-bottom: 80px;
}

/*
|--------------------------------------------------------------------------
| SHOW HEADER
|--------------------------------------------------------------------------
*/

.bcn-show-header {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid #dddddd;
}

.bcn-show-title {
    margin: 0;
    font-size: 36px;
    line-height: 1.2;
}

.bcn-season-label {
    margin-top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777777;
}

/*
|--------------------------------------------------------------------------
| SECTIONS
|--------------------------------------------------------------------------
*/

.bcn-section {
    width: 100%;
    margin-bottom: 60px;
}

.bcn-section-title {
    margin-bottom: 18px;
}

/*
|--------------------------------------------------------------------------
| SECTION COLORS
|--------------------------------------------------------------------------
*/

.bcn-blocked .bcn-section-title {
    color: #b00020;
}

.bcn-ready .bcn-section-title {
    color: #2e7d32;
}

/*
|--------------------------------------------------------------------------
| TABLE WRAPPER
|--------------------------------------------------------------------------
*/

.bcn-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

/*
|--------------------------------------------------------------------------
| TABLE
|--------------------------------------------------------------------------
*/

.bcn-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

.bcn-table thead th {
    background-color: #f3f3f3;
    font-weight: 700;
}

.bcn-table th,
.bcn-table td {
    padding: 12px;
    border: 1px solid #dddddd;
    text-align: left;
    vertical-align: top;
}

/*
|--------------------------------------------------------------------------
| ROW STATUS COLORS
|--------------------------------------------------------------------------
*/

.bcn-status-complete td {
    background-color: #e8f5e9 !important;
}

.bcn-status-in-progress td {
    background-color: #e3f2fd !important;
}

.bcn-status-blocked td {
    background-color: #ffebee !important;
}

.bcn-status-queued td {
    background-color: #f5f5f5 !important;
}

/*
|--------------------------------------------------------------------------
| HOVER
|--------------------------------------------------------------------------
*/

.bcn-table tbody tr:hover td {
    background-color: #f9f9f9 !important;
}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 768px) {

    .bcn-show-title {
        font-size: 28px;
    }

    .bcn-table th,
    .bcn-table td {
        padding: 10px;
        font-size: 14px;
    }

}