.consumer-console {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    color: #212529;
}

.consumer-console .main-green {
    background: #a8e000;
}

.consumer-console .text-green {
    color: #225394;
}

/* Top bar */
.consumer-topbar {
    min-height: 45px;
}

.consumer-topbar .user-icon,
.consumer-topbar .comment-icon {
    color: #225394;
    font-size: 22px;
}

.consumer-topbar .modify-comments {
    font-weight: 600;
    display: flex;
    justify-content: end;
}

/* Search Panel */
.search-panel {
    background: #eeeeee;
    min-height: 650px;
}

.search-tabs {
    background: #212529;
    border-radius: 7px 7px 0 0;
    overflow: hidden;
}

.search-tab {
    display: inline-block;
    padding: 9px 14px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.consumer-console .search-tab.active {
    background: #225394;
}

.search-content {
    background: #f2f2f2;
    padding: 10px 16px;
}

.search-content .form-control,
.search-content .form-select {
    height: 40px;
    font-size: 13px;
}

.consumer-console .search-btn, .consumer-console .search-btn:hover {
    background: #225394;
    border: 0;
    font-weight: 600;
    height: 40px;
    padding: 0 18px;
    color:#fff;
}

.show-inactive {
    font-size: 11px;
    font-weight: 600;
    display: flex;
    gap: 3px;
}

.no-records {
    text-align: center;
    color: #555;
    padding-top: 20px;
}

/* Profile */
.consumer-console .profile-wrapper {
    background: #eeeeee;
    padding: 15px;
}

.profile-box {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 30px 18px 20px;
}

.profile-label {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    display: flex;
    gap: 5px;
}

.profile-row {
    margin-bottom: 18px;
}

.field-icon {
    color: #225394;
    font-size: 22px;
    width: 32px;
    min-width: 32px;
    text-align: center;
}

.profile-input, select.profile-input {
    height: 40px;
    background: #ffffff;
    border: 1px solid #d9dcd8;
    border-radius: 4px;
    width: 100% !important;
}

.profile-input:focus {
    outline: none;
    border-color: #225394;
    box-shadow: none;
}

.date-input {
    width: 80px;
}

.gender-select {
    padding: 0 8px !important;
}

.action-buttons .btn {
    min-width: 52px;
    border-radius: 4px;
    font-size: 14px;
}

.consumer-console .btn-edit, .consumer-console .btn-edit:hover {
    background: #5d646a;
    color: #fff;
}

.consumer-console .btn-save, .consumer-console .btn-save:hover {
    background: #225394;
    color: #fff;
}

.consumer-console .btn-delete, .consumer-console .btn-delete:hover {
    background: #ed9da5;
    color: #fff;
}

.country-radio-btn {
    display: flex;
    gap: 8px;
}
.country-radio-btn input[readonly] {
    opacity: 1 !important;
}




/* Bottom tabs */
.bottom-tabs {
    margin-top: 45px;
}

.bottom-tabs .nav {
    background: #6d6b6b;
    border-radius: 7px 7px 0 0;
    overflow: hidden;
}

.bottom-tabs .nav-link {
    color: #fff !important;
    border: 0;
    border-radius: 0;
    padding: 11px 14px;
    font-weight: 600;
    font-size: 13px;
}

.bottom-tabs .nav-link.active {
    background: #225394;
    color: #fff;
}

.tab-content-area {
    min-height: 180px;
    background: #f3f3f3;
}

/***** Mobile ******/

@media (min-width: 1200px) {
.consumer-console .search-panel {min-height: 100%;}
}

@media (max-width: 991.98px) {

    .search-panel {
        min-height: auto;
        margin-bottom: 20px;
    }

    .profile-wrapper {
        padding: 10px;
    }

    .profile-box {
        padding: 20px 12px;
    }

    .bottom-tabs {
        overflow-x: auto;
    }

    .bottom-tabs .nav {
        width: max-content;
        min-width: 100%;
    }

    .bottom-tabs .nav-link {
        white-space: nowrap;
    }
}

@media (max-width: 575.98px) {

    .consumer-topbar {
        font-size: 12px;
    }

    .profile-label {
        font-size: 13px;
    }

    .date-input {
        width: 65px;
    }

    .profile-row .row {
        row-gap: 8px;
    }

    .action-buttons {
        text-align: left !important;
        margin-top: 10px;
    }
}