/* _content/JoticleHubs/Pages/Dashboard.cshtml.rz.scp.css */

/* General card styles with specific prefix for dashboard cards */
.dashboard-card[b-mtkujv8xce] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    margin: 20px;
}

.dashboard-card:hover[b-mtkujv8xce] {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

/* Specific styles for tilebox-one within dashboard */
.dashboard-card.tilebox-one[b-mtkujv8xce] {
    background-color: #fff;
    border: none;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

    .dashboard-card.tilebox-one:hover[b-mtkujv8xce] {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    }

/* Card body and text styling for dashboard */
.dashboard-card .card-body[b-mtkujv8xce] {
    padding: 2rem;
    position: relative;
}

.dashboard-card .card-title[b-mtkujv8xce] {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.dashboard-card .card-text[b-mtkujv8xce] {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Text styles */
.dashboard-card .text-muted[b-mtkujv8xce] {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Badge styles specific to dashboard */
.dashboard-card .badge[b-mtkujv8xce],
.dashboard-card .bg-primary[b-mtkujv8xce],
.dashboard-card .bg-success[b-mtkujv8xce],
.dashboard-card .bg-danger[b-mtkujv8xce],
.dashboard-card .bg-info[b-mtkujv8xce] {
    font-size: 0.85em;
    font-weight: 500;
    padding: 0.25em 0.6em;
    color: #fff;
}

.dashboard-card:hover .badge[b-mtkujv8xce] {
    opacity: 0.85;
}

/* User info and avatar styles specific to recent users */
.user-info[b-mtkujv8xce] {
    display: flex;
    align-items: center;
}

.user-avatar[b-mtkujv8xce] {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 10px;
}

.content-card[b-mtkujv8xce] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    border-radius: 8px;
    overflow: hidden; /* Ensures that all inner elements adhere to card's rounded corners */
}

.card-header[b-mtkujv8xce] {
    padding: 12px 16px;
    font-size: 1.1rem;
}

.card-body[b-mtkujv8xce] {
    padding: 16px;
    font-size: 0.95rem;
}

.card-footer[b-mtkujv8xce] {
    padding: 12px 16px;
    font-size: 0.85rem;
}

.badge[b-mtkujv8xce] {
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #fff;
}


.recent-users-card[b-mtkujv8xce] {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.recent-users-card:hover[b-mtkujv8xce] {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.recent-users-card-header[b-mtkujv8xce] {
    background-color: #0A4A7A; /* A more vibrant blue */
    color: white;
    padding: 10px 15px;
    font-size: 1.2rem;
}

.recent-users-list-group-item[b-mtkujv8xce] {
    border-left: 0;
    border-right: 0;
    border-color: #dee2e6; /* Lighten border color for a softer look */
    transition: background-color 0.2s ease;
}

    .recent-users-list-group-item:hover[b-mtkujv8xce] {
        background-color: #f8f9fa;
    }

.recent-users-user-info[b-mtkujv8xce] {
    display: flex;
    align-items: center;
}

.recent-users-user-avatar[b-mtkujv8xce] {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 10px;
}

.recent-users-text-muted[b-mtkujv8xce] {
    font-size: 0.85rem;
    color: #6c757d;
}


.custom-tab-style.nav-tabs[b-mtkujv8xce] {
    border-bottom: none;
}

.custom-tab-style .nav-link[b-mtkujv8xce] {
    border: 2px solid transparent; /* Add a bottom border for inactive state */
    background-color: transparent;
    color: #495057;
    margin-right: 5px; /* Adds a small gap between tabs */
    transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

    .custom-tab-style .nav-link:hover[b-mtkujv8xce] {
        background-color: #66923b; /* Color for the active tab */
        border-color: #72a540;
        color: #fff;
    }

    .custom-tab-style .nav-link.active[b-mtkujv8xce] {
        color: #fff;
        border-color: #0b4775; /* Color for the active tab */
        background-color: #0A4A7A;
    }

.custom-tab-style .tab-content[b-mtkujv8xce] {
    padding-top: 20px; /* Adds space between tabs and content */
}

/* Custom colors for primary buttons with custom prefix */
.custom-btn-outline-primary[b-mtkujv8xce] {
    color: #0A4A7A; /* Text and border color */
    border-color: #0A4A7A;
}

    .custom-btn-outline-primary:hover[b-mtkujv8xce] {
        background-color: #0A4A7A; /* Background color on hover */
        color: #ffffff; /* Text color on hover */
    }

/* Custom colors for secondary buttons with custom prefix */
.custom-btn-outline-secondary[b-mtkujv8xce] {
    color: #66923B; /* Text and border color */
    border-color: #66923B;
}

    .custom-btn-outline-secondary:hover[b-mtkujv8xce] {
        background-color: #66923B; /* Background color on hover */
        color: #ffffff; /* Text color on hover */
    }
/* _content/JoticleHubs/Pages/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand[b-zkl2omi23l] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-zkl2omi23l] {
  color: #0077cc;
}

.btn-primary[b-zkl2omi23l] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-zkl2omi23l], .nav-pills .show > .nav-link[b-zkl2omi23l] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-zkl2omi23l] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-zkl2omi23l] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-zkl2omi23l] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-zkl2omi23l] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-zkl2omi23l] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
