﻿.intro-card {
    width: 100%;
    padding: 35px 24px;
    border-radius: 12px;
    background: #FFF;
}

.new-project-card {
    background: transparent;
    height: 100%;
    width: 100%;
    border: 2px solid #0095da;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .new-project-card:hover {
        background: #0095da20;
        transition: all 0.3s ease;
    }

.new-project-card-disabled {
    background: transparent;
    height: 100%;
    width: 100%;
    border: 2px solid #818181;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .new-project-card-disabled:hover {
        background: #81818120;
        transition: all 0.3s ease;
    }

.project-description-card {
    width: 50%;
    border-radius: 12px;
    border: 1px solid #DAE4FF;
    background: #F4F7FF;
}

.mud-table-container {
    overflow: auto; /* Ensure smooth scrolling */
}

.mud-table-row {
    position: relative; /* Ensure rows have a stacking context */
}

.mud-avatar-group {
    flex-wrap: nowrap; /* Prevent wrapping of avatars */
}

.mud-avatar {
    transition: transform 0.2s ease; /* Smooth hover effect if needed */
}

.mud-table .mud-table-cell {
    vertical-align: middle !important; /* Force consistent vertical alignment */
}

.mud-table {
    border-radius: 12px;
}

.mud-table-row:hover {
    background-color: aliceblue !important;
}

.no-hovr:hover {
    background: #FFFFFF !important;
}

.no-hovr {
    background: #FFFFFF !important;
}

/*.mud-input.mud-input-outlined .mud-input-outlined-border {*/
/*    border-radius: 12px;*/
/*}*/

.mud-input.mud-input-outlined:focus-within .mud-input-outlined-border {
    border-color: #0095da;
}


.disabled-control {
    opacity: 0.4;
    cursor: not-allowed;
}

.pointer-events-none {
    pointer-events: none;
}

.filter-field {
    position: relative;
    width: 75%;
}

/* General Styling */
body {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Dashboard Layout */
.dashboard {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 30px;
}

    .dashboard-header h1 {
        font-size: 2.5em;
        color: #2c3e50;
    }

    .dashboard-header p {
        font-size: 1.2em;
        color: #7f8c8d;
    }

/* Card Container */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card-active {
    transform: translateY(-6px);
    /*box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.16);*/
    border: 2px solid #0095da;
    background: rgba(255, 255, 255, 1);
}

.card-inactive {
    transform: scale(0.98);
}

.mud-card-hover:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient( circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.2) 0%, transparent 70% );
    pointer-events: none;
    z-index: 0;
}

/* Progress Bar Styling */
.mud-progress-linear {
    border-radius: 4px;
    height: 6px !important;
    background-color: rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

    .mud-progress-linear::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.3), transparent );
        animation: progress-shimmer 2s infinite linear;
        z-index: 1;
    }

/*!* Glassmorphism Effect *!*/
/*    .mud-card::before {*/
/*        content: '';*/
/*        position: absolute;*/
/*        top: 0;*/
/*        left: 0;*/
/*        right: 0;*/
/*        bottom: 0;*/
/*        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));*/
/*        z-index: -1;*/
/*    }*/


/*!* Icon Styling *!*/
/*.mud-card .mud-icon-root {*/
/*    transition: none;*/
/*}*/


.mud-card-hover:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient( circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.2) 0%, transparent 70% );
    pointer-events: none;
    z-index: 0;
}

/* Progress Bar Styling */
.mud-progress-linear {
    border-radius: 4px;
    height: 6px !important;
    background-color: rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

    .mud-progress-linear::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.3), transparent );
        animation: progress-shimmer 2s infinite linear;
        z-index: 1;
    }


.mud-card[data-type="Total"] {
    --card-color: #1e88e5;
    --card-bg: #e3f2fd;
    --card-accent: #bbdefb;
}

.mud-card[data-type="In Progress"] {
    --card-color: #fbc02d;
    --card-bg: #fff8e1;
    --card-accent: #ffecb3;
}

.mud-card[data-type="Completed"] {
    --card-color: #43a047;
    --card-bg: #e8f5e9;
    --card-accent: #c8e6c9;
}


.mud-card.card-active::before {
    background: linear-gradient( 135deg, var(--card-accent), var(--card-bg) 60%, rgba(255, 255, 255, 0.1) );
}

.mud-avatar-group {
    display: flex;
    align-items: center;
}

.pa-2 {
    padding: 8px !important; /* Override default pa-3 (16px) to pa-2 (8px) */
}

/* Adjust typography sizes */
.mud-typography-body1 {
    font-size: 0.9rem; /* Smaller than h6 */
    line-height: 1.2;
    font-weight: 500;
}

/*.mud-typography-h5 {*/
/*    font-size: 1.25rem; !* Smaller than h4 (1.5rem) *!*/
/*    line-height: 1.3;*/
/*    margin: 0;*/
/*}*/

/* .mud-input-label-outlined{ */
/*     background-color: transparent; */
/* } */

/* .mud-input-control>.mud-input-control-input-container>.mud-input-label-outlined.mud-input-label-inputcontrol{ */
/*     background-color: transparent; */
/* } */


.mud-icon-size-small {
    font-size: 18px !important;
}

/* Compact progress bar */
.compact-progress {
    height: 4px !important; /* Reduced from 6px */
    margin-top: 4px; /* Reduced spacing */
}

.mud-avatar {
    width: 24px !important;
    height: 24px !important;
    font-size: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mud-avatar-group .mud-avatar:nth-child(n+4) {
    margin-left: -8px;
}

.aws-icon {
    vertical-align: middle; /* Align with text or other icons */
    color: #0095DA; /* Match your existing blue color */
}

.oracle-icon {
    vertical-align: middle; /* Align with text or other icons */
    color: #0095DA; /* Match your existing blue color */
}

.d-flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

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

.justify-content-center {
    justify-content: center;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.pa-2 {
    padding: 0.5rem;
}

.ma-2 {
    margin: 0.5rem;
}

.project-description-card {
    border-radius: 8px;
    background-color: #f5f6fa;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md-grid-cols-2 {
    @media (min-width: 768px) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.lg-grid-cols-3 {
    @media (min-width: 1024px) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.gap-6 {
    gap: 1.5rem;
}

.d-flex {
    display: flex;
}

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

.justify-between {
    justify-content: space-between;
}

.mud-dialog .mud-dialog-title {
    background-color: #fff;
    padding: 12px 24px;
    margin: 24px;
    margin-bottom: 0px;
    border-radius: 12px;
}

    .mud-dialog .mud-dialog-title .mud-button-close {
        top: 38px;
        right: 38px;
        position: absolute;
        background: #0095DA;
        border-radius: 5px;
        width: 25px;
        color: white;
        height: 25px;
    }

.mud-dialog .mud-table-pager {
    display: flex;
    align-items: center;
    gap: 0.25rem; /* Reduced gap between elements */
}

    .mud-dialog .mud-table-pager .mud-input-control {
        margin: 0;
        padding: 0;
    }

    .mud-dialog .mud-table-pager .mud-icon-button {
        margin: 0;
        padding: 0 0.25rem;
    }

    .mud-dialog .mud-table-pager .mud-select {
        margin: 0;
        padding: 0;
        gap: 0.25rem; /* Reduced gap for Rows per page */
    }

.mud-table-pagination-select .mud-input .mud-input-root {
    max-width: 80px;
    cursor: pointer;
    margin-top: 2px;
    border: none;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.43;
    width: 17px;
    letter-spacing: 0.01071em;
    color: var(--mud-theme-on-surface);
}
.mud-table-container::-webkit-scrollbar {
    display: none; 
}

.mud-table-container {
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}