.brand-logo h3 {
    color: #bdbdc7;
    margin-top: 18px;
}

.brand-title {
    margin-left: 0px;
}

a.text-budget:hover, a.text-budget:focus {
    color: #50E3C2 !important; 
}

.basic-form label {
    font-weight: 600;
}

a {
    color: #777;
}

table a {
    text-decoration: underline;
    text-decoration-style: dotted;
}

.btn-secondary {
    color: #593bdb;
    background-color: #FFF;
    border-color: #593bdb;
}

.badge-org {
    color: #fff;
    background-color: #593bdb;
    padding: 5px 30px;
}

.scrambled {
    padding: 5px 30px;
}

#datatable-categoryTotals td {
    cursor: pointer;
}

#notification_list {
    height: auto !important;
    overflow: auto;
}

#notification_list span {
    font-size: 0.875rem;
}

table.dataTable tbody tr:hover {
  background-color: rgb(159, 156, 156, 0.2) !important;
}

table th, table td {
    text-align: right;
}

/* Responsive stuff for font sizes */
@media (max-width: 1600px) {

    .stat-digit {
        font-size: 1.3rem !important;
    }
}

#full-logo {
    display: block;
}

#part-logo {
    display: none;
}

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

    #full-logo {
        display: none;
    }

    #part-logo {
        display: block;
    }

    .search_bar, #org_label {
        display: none !important;
    }
    
}

/* Step Wizard Styles */
.step-indicator {
    text-align: center;
    position: relative;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
    border: 3px solid #e9ecef;
}

.step-circle.active {
    background-color: #7356BF;
    color: white;
    border-color: #7356BF;
}

.step-circle.completed {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

.step-label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
}

.step-indicator.active .step-label {
    color: #7356BF;
    font-weight: 600;
}

.step-line {
    height: 3px;
    width: 80px;
    background-color: #e9ecef;
    margin: 0 15px;
    align-self: flex-start;
    margin-top: 23px;
}

.step-line.completed {
    background-color: #28a745;
}

/* Bootstrap alert overrides */
.alert-danger {
    background-color: #fff;
}

.page-titles .breadcrumb-item {
    margin-top: 1px !important;
}

.page-titles .breadcrumb-item.active {
    margin-top: 0px !important;
}

/* Dashboard Tab Styles */
.dashboard-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
}

.tab-btn {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    color: #333;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: #e9e9e9;
}

.tab-btn.active {
    background-color: #593bdb;
    color: white;
    border-color: #593bdb;
}

.tab-content {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Todo list scroll fix */
.tdl-holder ul {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* DataTables info and pagination layout */
.dataTables_wrapper .dataTables_info {
    float: left !important;
    text-align: left !important;
    padding-top: 0.755em;
}

.dataTables_wrapper .dataTables_paginate {
    float: right !important;
    text-align: right !important;
}

