﻿body {
}

.strength0 {
    display: none;
}

.strength1 {
    width: 20%;
    background: linear-gradient(to right,red,#ff6a00);
    height: 10px;
    float: left;
    position: relative;
}

.strength2 {
    width: 20%;
    background: linear-gradient(to right,#ff6a00,#ffd800);
    height: 10px;
    float: left;
    position: relative;
}

.strength3 {
    width: 20%;
    background: linear-gradient(to right,#ffd800,#b6ff00);
    height: 10px;
    float: left;
    position: relative;
}

.strength4 {
    width: 20%;
    background: linear-gradient(to right,#b6ff00,#4cff00);
    height: 10px;
    float: left;
    position: relative;
}

.strength5 {
    width: 20%;
    background: linear-gradient(to right,#4cff00,#23ad5c);
    height: 10px;
    float: left;
    position: relative;
}
.form-control-register {
    width: 95%;
    float: right;
    vertical-align: -webkit-baseline-middle;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.text-red{
    color:red;
}

/* Mobile reflow for the "Jobs Applied To" grid (controls/applyList_Snapin_clean.ascx).
   Below Bootstrap 3's xs breakpoint the 4-column table (Title/Status/Location/Complete)
   overflowed its col-md-6 container and clipped the trailing red "Complete" button.
   Stack each row into a card so every field, including a full-width Complete button,
   is fully visible with no horizontal scrolling. Scoped to .apply-list-responsive. */
@media (max-width: 767px) {
    .apply-list-responsive .table,
    .apply-list-responsive .table tbody,
    .apply-list-responsive .table tr,
    .apply-list-responsive .table td {
        display: block;
        width: 100%;
    }

    .apply-list-responsive .table thead {
        display: none;
    }

    .apply-list-responsive .table tr {
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 1px solid #ddd;
    }

    .apply-list-responsive .table td {
        border: 0;
        padding: 4px 0;
    }

    /* data-label is set from the localized column header in RowDataBound */
    .apply-list-responsive .table td[data-label]::before {
        content: attr(data-label) ": ";
        font-weight: bold;
    }

    .apply-list-responsive .table td .btn {
        width: 100%;
    }
}

/* ── Post-login home toolbar (home.aspx #profileToolbarGroup) ────────────────
   Consolidated single toolbar: a segmented view toggle (Profile / Available
   Positions) on the left and a Manage actions dropdown on the right. The active
   view uses .btn-primary so the accent follows each tenant's own theme; the
   inactive view and the Manage toggle stay neutral (.btn-default). */
.profileToolbar {
    background: #f7f8fa;
    border: 1px solid #e4e7eb;
    border-radius: 6px;
    padding: 8px 10px;
    margin-bottom: 18px;
}
.profileToolbar .btn-toolbar {
    margin-left: 0;
}
.profileToolbar .btn-default {
    background-color: #fff;
}

/* Icons (Glyphicons Halflings, already loaded) injected via ::before so the
   localized button Text is preserved and the view-toggle CssClass sentinel in
   home.aspx.vb (compares the exact string "btn btn-primary active") is left
   untouched. View-toggle icons are keyed by position, not by an added class. */
.profileToolbar .pt-views > a:before,
.profileToolbar .dropdown-menu .pt-icon-edit:before,
.profileToolbar .dropdown-menu .pt-icon-app:before {
    font-family: 'Glyphicons Halflings';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    margin-right: 6px;
}
.profileToolbar .pt-views > a:first-child:before { content: "\e008"; } /* user     → Profile   */
.profileToolbar .pt-views > a:last-child:before  { content: "\e032"; } /* list-alt → Positions */
.profileToolbar .dropdown-menu .pt-icon-edit:before { content: "\e065"; } /* pencil */
.profileToolbar .dropdown-menu .pt-icon-app:before  { content: "\e022"; } /* file   */

/* Phones / kiosk: stack the two groups full width so nothing clips */
@media (max-width: 767px) {
    .profileToolbar .btn-group {
        display: block;
        float: none;
        margin-bottom: 6px;
    }
    .profileToolbar .btn-group:last-child {
        margin-bottom: 0;
    }
    .profileToolbar .pull-right {
        float: none !important;
    }
    .profileToolbar .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        box-shadow: none;
    }
}



