﻿.btn-primary {
    color: #fff;
    background-color: #0275d8;
    border-color: #0275d8;
}
.btn-secondary {
    color: #fff;
    background-color: #969696;
    border-color: #969696;
}
.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #5cb85c;
}
.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d9534f;
}

.show > .btn-primary.btn-tertiary {
    border-color: #2e3543;
    background-color: #2e3543;
    &:hover {
        border-color: rgba(41, 50, 66, 0.8);
        background-color: rgba(41, 50, 66, 0.8);
    }
    &.dropdown-toggle {
        border-color: #2e3543;
        background-color: #2e3543;
        &:focus {
            -webkit-box-shadow: none;
            box-shadow: none;
        }
    }
}

.btn-primary.btn-tertiary {
    border-color: #2e3543;
    background-color: #2e3543;
    &:hover {
        border-color: rgba(41, 50, 66, 0.8);
        background-color: rgba(41, 50, 66, 0.8);
    }
    &:focus{
        -webkit-box-shadow: none !important;
        box-shadow: none;
    }
    &:active {
        border-color: rgba(41, 50, 66, 0.8) !important;
        background-color: rgba(41, 50, 66, 0.8) !important;
    }
}

.chosen-container {
    color: black;
}

.output {
    color: black;
    background-color: white;
    height: 300px;
    border-radius: 0.25rem;
    overflow: auto;
    /* fighting with theme, may not be needed otherwise */
    background-clip: unset;
}

.output-count {
    width: 90px;
    height: 2rem;
    border-radius: 0.25rem;
    overflow-y: hidden
}

/*Table Entry Styling*/
th {
    background-color: #1c1f25;
    color: white;
}

tr {
    border: 3px solid #1c1f25;
    border-left: 0px;
    border-right: 0px;
}

.table th, .table td {
    vertical-align: middle;
}

.encoded-msg-textarea {
    height: 10vh;
}

.results-textarea {
    height: 30vh;
}

.breadcrumb {
    background-color: #24344d;
    padding: 0;
}

/* Scrollbar styling */
textarea {
    scrollbar-width: thin;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
    color: black;
}

.nav-tabs .nav-item .nav-link.active {
    background-color: white;
    color: #495057;
    border-color: #dee2e6 #dee2e6 #fff;
}

.nav-item .nav-link {
    background-color: #192231;
    color: white;
}