.justify-right {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    align-items: center;
}

html,
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.copy-icon {
    cursor: pointer;
}

.highlight-row {
    background-color: #f5f5f5;
}

.status-active {
    color: green;
}

.status-inactive {
    color: red;
}

.center-text {
    text-align: center;
}

.mat-table {
    margin: auto;
    table-layout: auto;
}

.mat-table th,
.mat-table td {
    padding: 5px;
    margin: 0;
}

.form-element label {
    width: 100%;
}

.form-element {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.bxs-none {
    box-shadow: none;
}

.item-4pr {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.auto-scroll {
    overflow-x: auto;
}

::-webkit-scrollbar {
    width: 8px;
    height: 6px;
    /* width of the scrollbar */
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* color of the track */
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    /* color of the handle */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* color of the handle on hover */
}

.content {
    padding-top: 1.1rem;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flex {
    display: flex;
    align-items: center;
    gap: 5px;
}

.grid {
    display: grid;
    gap: 10px;
    align-items: center;
}

.overflow-wrap {
    overflow-wrap: anywhere;
}

.btn-container {
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 5px;
    justify-content: end;
}
.table-div
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Custome Tab */
.tab-menu {
    display: flex;
    width: 100%; /* Adjust width as needed */
}

.tab-link {
    width: 50%;
    
    border-radius: 10px;
    background-color: #ebe8e8;
    color: #333;
    text-decoration: none;
    padding: 5px 20px;
    margin-right: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}
.tab-link.active {
    
    background-color: #c5c5c5;
     /* Change to desired active color */
}
.tab-link:hover {
    background-color:  #c5c5c5;
}
.jc-end
{
    justify-content: end;
}
.jc-start
{
    justify-content: start;
}
.jc-center
{
    justify-content: center;
}
.custom-card-title
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.border-none tr, .border-none td{
    text-align: start;
    border: none;
}
.flex-row
{
    display: flex;
    gap:5px;
    flex-direction: row;
    align-items: center;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
}

.welcome-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.user-info {
    text-align: center;
}

.user-image {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.calendar {
    margin-top: 20px;
}

.dashboard-items {
    padding: 20px;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.item-card {
    padding: 20px;
}
.overview-stats {
    display: flex;
    gap: 20px;
}

.stat-card {
    flex: 1;
    padding: 20px;
}



.item-card, .analytics, .site-management, .notifications {
    padding: 20px;
}

.mat-link-button {
    margin: 5px 0;
}

.link {
    color: #007BFF; /* Default link color */
    text-decoration: none; /* Remove underline */
    font-weight: normal; /* Normal font weight */
}

/* Hover state */
.link:hover {
    color: #0056b3; /* Darker blue on hover */
    text-decoration: underline; /* Underline on hover */
}

/* Active state */
.link:active {
    color: #004085; /* Even darker blue when active */
    text-decoration: underline; /* Keep underline on active */
}

/* Visited state */
.link:visited {
    color: #6c757d; /* Different color for visited links */
}

/* Additional styles */
.link:focus {
    outline: none; /* Remove default outline */
}

.link:disabled {
    color: #6c757d; /* Disabled link color */
    pointer-events: none; /* Disable interaction */
}