@import '_content/AgileClientCore/AgileClientCore.7dee17x6z7.bundle.scp.css';

/* /Pages/Administrator/AdmProjectsPage.razor.rz.scp.css */
.accordion-button-d[b-4gdtazgqun] {
    background-color: #E6F0FF;
}

    /*    .accordion-button:focus {
        box-shadow: none;
    }*/

    .accordion-button-d:not(.collapsed)[b-4gdtazgqun] {
        background-color: #C6DFFF;
    }

.accordion-button-dl2[b-4gdtazgqun] {
    background-color: #86DE74;
}

    /*    .accordion-button:focus {
        box-shadow: none;
    }*/

    .accordion-button-dl2:not(.collapsed)[b-4gdtazgqun] {
        background-color: #86F074;
    }

.btn-link-header[b-4gdtazgqun] {
    font-size: 20px;
}

.dropdown-prj-size[b-4gdtazgqun] {
    min-width: 30vw;
}

.text-overflow[b-4gdtazgqun] {
    white-space: pre-wrap;
    overflow-y: auto;
    text-overflow: ellipsis;
}
/*BUTTTON*/
.container[b-4gdtazgqun] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 1em;
}

.image-container img[b-4gdtazgqun] {
    opacity: 1;
    border-radius: 10px;
    transition: opacity 0.3s ease; /* Add transition effect */
}

.container:hover img[b-4gdtazgqun] {
    opacity: 0.4;
}

.image-container[b-4gdtazgqun] {
    position: relative;
}

.edit-button-container[b-4gdtazgqun] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.edit-button[b-4gdtazgqun] {
    padding: 10px 20px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.container:hover .edit-button[b-4gdtazgqun] {
    opacity: 1;
}

table[b-4gdtazgqun] {
    margin-top: 5px;
    width: 100%;
    border-collapse: collapse; /* Ensures that borders are shared between cells */
    border-radius: 12px; /* Adds rounded corners to the entire table */
    overflow: hidden; /* Ensures rounded corners are applied to table content */
}

th[b-4gdtazgqun], td[b-4gdtazgqun] {
    border: 1px solid black; /* Adds borders to each cell */
    padding: 8px;
    text-align: left;
}

tr[b-4gdtazgqun] {
    border-bottom: 1px solid black; /* Adds a line between rows */
}

    tr:nth-child(even)[b-4gdtazgqun] {
        background-color: #f9f9f9; /* Shades every 2nd row */
    }

    tr:hover[b-4gdtazgqun] {
        background-color: #f2f2f2; /* Changes background color on hover */
    }

th:first-child[b-4gdtazgqun] {
    border-top-left-radius: 12px; /* Rounds top-left corner */
}

th:last-child[b-4gdtazgqun] {
    border-top-right-radius: 12px; /* Rounds top-right corner */
}

tr:last-child td:first-child[b-4gdtazgqun] {
    border-bottom-left-radius: 12px; /* Rounds bottom-left corner */
}

tr:last-child td:last-child[b-4gdtazgqun] {
    border-bottom-right-radius: 12px; /* Rounds bottom-right corner */
}
/* /Pages/LandingPage.razor.rz.scp.css */
/* Basic Styles */
html[b-dz94dguxmb], body[b-dz94dguxmb] {
    height: 100%; /* Ensure both html and body take up the full viewport height */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

body[b-dz94dguxmb] {
    display: flex;
    flex-direction: column; /* Stack children vertically */
}

/* Container Styles */
.container[b-dz94dguxmb] {
    flex: 1; /* Allow the container to grow and fill the available space */
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-nav[b-dz94dguxmb] {
    display: flex;
    width: 90%;
    max-width: 1200px;
    align-items: center;
}

/* Header Styles */
header[b-dz94dguxmb] {
    background-color: #594AE2;
    padding: 20px 5px 20px 5px;
    color: #fff;
    display: flex;
    justify-content: space-between; /* Space out the logo and nav container */
    align-items: center; /* Center items vertically */
    position: sticky;
    top: 0;
    z-index: 10
}

    header .logo[b-dz94dguxmb] {
        font-size: 24px;
        font-weight: bold;
        display: flex;
        align-items: center;
        fill: white;
        color: white;
        position: absolute;
    }

a[b-dz94dguxmb] {
    color: white;
}

header .arrow[b-dz94dguxmb] {
    color: #00AEEF;
}

header nav[b-dz94dguxmb] {
    margin-left: auto;
}

    header nav ul[b-dz94dguxmb] {
        list-style: none;
        display: flex;
        gap: 20px;
        margin: 0;
        padding: 0;
    }

        header nav ul li a[b-dz94dguxmb] {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            background-color: transparent; /* Default background */
            transition: background-color 0.3s; /* Smooth transition */
        }

            header nav ul li a:hover[b-dz94dguxmb] {
                background-color: #FF0066; /* Change background color on hover */
            }

header .sub-button[b-dz94dguxmb] {
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s; /* Smooth transition */
}

header .cta-button[b-dz94dguxmb] {
    background-color: #FF0066;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s; /* Smooth transition */
}

    header .cta-button:hover[b-dz94dguxmb] {
        background-color: #E6005C; /* Darker shade on hover */
    }

/* Hero Section Styles */
.hero[b-dz94dguxmb] {
    background-color: #E8EAF6;
    color: #616161;
    text-align: center;
    padding: 100px 20px;
}

    .hero h1[b-dz94dguxmb] {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero p[b-dz94dguxmb] {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero .cta-button[b-dz94dguxmb] {
        background-color: #FF0066;
        color: #fff;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 18px;
        transition: background-color 0.3s; /* Smooth transition */
    }

        .hero .cta-button:hover[b-dz94dguxmb] {
            background-color: #E6005C; /* Darker shade on hover */
        }

.hero-image[b-dz94dguxmb] {
    margin-top: 50px;
}

    .hero-image img[b-dz94dguxmb] {
        width: 100%;
        max-width: 300px;
        height: auto;
        background-color: transparent; /* Default background */
        transition: background-color 0.3s; /* Smooth transition */
    }

        .hero-image img:hover[b-dz94dguxmb] {
            background-color: #E8EAF6; /* Change background color on hover */
        }

/* Trust Indicators Section */
.trust-indicators[b-dz94dguxmb] {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.trust-item[b-dz94dguxmb] {
    margin-bottom: 20px;
}

    .trust-item img[b-dz94dguxmb] {
        height: 50px;
        margin-bottom: 10px;
        background-color: transparent; /* Default background */
        transition: background-color 0.3s; /* Smooth transition */
    }

        .trust-item img:hover[b-dz94dguxmb] {
            background-color: #E8EAF6; /* Change background color on hover */
        }

/* Footer Styles */
footer[b-dz94dguxmb] {
    background-color: #594AE2;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}
/* /Pages/Profile.razor.rz.scp.css */
.container[b-byis3lq0la] {
    display: flex;
    flex-direction: column;
    align-items: center;
    height:250px;
    width:250px;

}

.circle[b-byis3lq0la] {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: lightgray;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 8px 5px 6px rgba(0, 0, 0, 0.2);
}

.edit-container[b-byis3lq0la] {
    position: absolute;
    margin-left: 100px;
    transform: translate(50%, -50%);
}
/* /Pages/ProjectTeamsPage.razor.rz.scp.css */
.circle-container[b-qsw1q22n2g] {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.circle[b-qsw1q22n2g] {
    margin-top: 10px;
    position: relative;
    width: 120px; /* Adjust the size of the circle */
    height: 120px; /* Adjust the size of the circle */
    border-radius: 50%;
    background-color: gray; /* Replace with your desired background color */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: border-color 0.3s; /* Add transition effect for smooth hover */
}

    .circle:hover[b-qsw1q22n2g] {
        border: 4px solid var(--mud-palette-primary);
        opacity: 0.8;
    }

.small-circle[b-qsw1q22n2g] {
    position: absolute;
    top: 70%; /* Adjust the position of the smaller circle */
    left: 0%; /* Adjust the position of the smaller circle */
    width: 40px; /* Adjust the size of the smaller circle */
    height: 40px; /* Adjust the size of the smaller circle */
    border-radius: 50%;
    background-color: var(--mud-palette-primary); /* Replace with your desired background color */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .small-circle i[b-qsw1q22n2g] {
        font-size: 20px; /* Adjust the size of the smaller icon */
        color: white; /* Replace with your desired icon color */
    }
/* /Pages/SystemShop.razor.rz.scp.css */
.list-group[b-03nxr76g9x] {
    max-height: 85vh;
    min-width: 300px;
    margin-bottom: 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.card[b-03nxr76g9x] {
    transition: transform 0.3s ease;
}
    .card:hover[b-03nxr76g9x] {
        transform: scale(1.05);
        background-color: #E8E8EC;
    }
.input-group-text[b-03nxr76g9x] {
    height: 100%;
}
.custom-search[b-03nxr76g9x] {
    width: 300px; /* Adjust the width value as needed */
}

.tab-fade-enter-active[b-03nxr76g9x] {
    transition: opacity 0.3s;
}

.tab-fade-leave-active[b-03nxr76g9x] {
    transition: opacity 0.3s;
}

.tab-fade-enter[b-03nxr76g9x], .tab-fade-leave-to[b-03nxr76g9x] {
    opacity: 0;
}

@keyframes fadeIn-b-03nxr76g9x {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in[b-03nxr76g9x] {
    animation: fadeIn-b-03nxr76g9x 2s;

}
.card-image-size[b-03nxr76g9x]{
    max-width: 100px;
}
/* /Pages/UserProjectsPage.razor.rz.scp.css */
.text-overflow[b-ap1n1zc5r8] {
    height: 100px;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*    .text-overflow:hover {
        color: transparent;
        text-shadow: 0 0 5px rgba(0,0,0,0.5);
        cursor:default;
        
    }*/
.card-size[b-ap1n1zc5r8]{
    min-width: 100px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.card-size:hover[b-ap1n1zc5r8]{
    transform: scale(1.03);
    transition: ease 0.3s;
}
.image-size[b-ap1n1zc5r8] {
    max-height: 225px;
    min-height: 230px;
}
.card-size[b-ap1n1zc5r8] {
    background: var(--mud-palette-background);
}
.dropdown-custom[b-ap1n1zc5r8] {
    z-index: 1;
}
.image-cursor[b-ap1n1zc5r8]{
    cursor:pointer;
}
/* /Shared/Comments/CommentSection.razor.rz.scp.css */
.comment-user[b-6ent9c3201] {
    margin: 5px;
}

.comment-content[b-6ent9c3201] {
    margin: 10px;
}

.comment-time[b-6ent9c3201] {
    margin-left: 3px;
    color: darkgray;
}

.comment-post-container[b-6ent9c3201] {
    margin: 10px;
    display: flex;
    align-items: center;
}

.comment-avatar-container[b-6ent9c3201] {
    display: flex;
    align-items: center;
    margin: 5px;
}

.comment-container[b-6ent9c3201] {
    overflow: auto;
    padding: 10px;
    /*         display: flex; */
    /*         flex-direction: column-reverse; */
}
/* /Shared/LevelClasification.razor.rz.scp.css */
.tag[b-46ewee9jxw] {
    display: inline-flex;
    /*background-color: #e0e0e0;*/
    padding: 5px 5px;
    border-radius: 4px;
    margin-left: 5px;
    margin-top: 5px;
    cursor: default;
    max-width: 250px;
    min-width: 50px;
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tag-border-primary[b-46ewee9jxw] {
    border: 1.5px solid #0B5DD4;
}

    .tag-border-primary:hover[b-46ewee9jxw] {
        background: #0B5DD4;
        color: white;
    }

.tag-border-secondary[b-46ewee9jxw] {
    border: 1.5px solid #157146;
}

    .tag-border-secondary:hover[b-46ewee9jxw] {
        background: #157146;
        color: white;
    }

.close-btn[b-46ewee9jxw] {
    background: none;
    border: none;
    font-size: 14px;
    color: #888;
    cursor: pointer;
    padding-right: 0;
    margin-left: 0px;
    margin-right: 3px;
}

    .close-btn:hover[b-46ewee9jxw] {
        color: #f00;
    }

.inline-btn[b-46ewee9jxw] {
    margin-top: 5px;
    margin-left: 5px;
}
/* /Shared/LoadingStatus.razor.rz.scp.css */
.loading-container[b-9eg8r6s7rw] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loading-spinner[b-9eg8r6s7rw] {
    border: 4px solid #f3f3f3; /* Light gray */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin-b-9eg8r6s7rw 1s linear infinite;
}

@keyframes spin-b-9eg8r6s7rw {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text[b-9eg8r6s7rw] {
    margin-left: 10px;
    font-size: 18px;
    color: #333;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.sticky-progress[b-8wku7zi6dj] {
    position: sticky;
    top: 64px; /* Adjust this value if you have a margin or padding */
    z-index: 2; /* Ensure it appears above other content */
    background-color: white; /* Match your app's background color */
}

.page[b-8wku7zi6dj] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-8wku7zi6dj] {
    flex: 1;
}

.sidebar[b-8wku7zi6dj] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-8wku7zi6dj] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-8wku7zi6dj]  a, .top-row[b-8wku7zi6dj]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-8wku7zi6dj]  a:hover, .top-row[b-8wku7zi6dj]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-8wku7zi6dj]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 600px) {
    .sticky-progress[b-8wku7zi6dj] {
        top: 48px; /* Adjust this value if you have a margin or padding */
    }
}

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-8wku7zi6dj] {
        display: none;
    }

    .top-row.auth[b-8wku7zi6dj] {
        justify-content: space-between;
    }

    .top-row[b-8wku7zi6dj]  a, .top-row[b-8wku7zi6dj]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-8wku7zi6dj] {
        flex-direction: row;
    }

    .sidebar[b-8wku7zi6dj] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-8wku7zi6dj] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-8wku7zi6dj]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-8wku7zi6dj], article[b-8wku7zi6dj] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
