﻿


.MyBlazorBackground {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}


.blazor-modal-content {
    width: 650px;
    margin: auto;
    margin-top: 150px;
    background-color: white;
    border-radius: 20px;
    -webkit-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    -moz-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    overflow: hidden;
}

.show-modal {
    display: block;
    animation-name: show-animation;
    animation-duration: 1s;
}

@keyframes show-animation {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.hide {
    display: none !important;
}

.blazor-modal-header {
    padding: 18px;
    border-radius: 10px 10px 0px 0px;
    height: 70px;
    background-color: #f5f9fd;
}


.blazor-modal-header-form {
    /*    background-color: #D8E1E8;*/
    background-color: #F5F9FD;
    padding: 18px;
    border-radius: 10px 10px 0px 0px;
    height: 70px;
}

.blazor-modal-title {
    margin: 5px;
    display: inline-block;
}

.modal-title-container {
    overflow: hidden;
    text-overflow: ellipsis; /* Optional: Show ellipsis (...) for overflowed text */
}

.btn btn-close-custom {
    float: right;
    cursor: pointer;
    margin-left: 5px;
}


.blazor-modal-body {
    padding: 10px;
    overflow-x: hidden;
    border-radius: 0px 0px 10px 10px;
    height: 100%;
    overflow-y: auto;
    background-color: #f5f9fd;
}

.blazor-modal-footer {
    /* background-color: #004085;*/
    padding: 16px 0px 0px 14px;
}



/* edit menu*/

.edit-modal-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index:15;
}


.edit-modal-content-process {
    width: 55%;
    margin: auto;
    margin-top: 2%;
    height: 90%;
    -webkit-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    -moz-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    border-radius: 10px 10px 0px 0px;
}

.edit-modal-body {
    padding: 0px 0px 11px 0px;
    border-radius: 0px 0px 10px 10px;
    background-color: #F5F9FD;
    height: 93%;
}

.edit-modal-content {
    height: 90%;
    width: 75%;
    margin: auto;
    margin-top: 2%;
    -webkit-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    -moz-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
}


.edit-modal-content-mobile {
    height: 90%;
    width: 45%;
    margin: auto;
    margin-top: 2%;
    -webkit-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    -moz-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
}

.edit-modal-name {
    min-height: 35%;
    width: 35%;
    margin: auto;
    margin-top: 10%;
    background-color: white;
    -webkit-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    -moz-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    border-radius: 10px 10px 10px 10px;
    background-color: #f5f9fd;
    /*overflow: hidden;*/
}


/* Media query for small screens (up to 768px) */
@media screen and (max-width: 1267px) {
    .edit-modal-content-process {
        width: 90%;
        margin: auto;
        margin-top: 2%;
        /* Uncomment the following line to add a background color for small screens */
        /* Add any other styles for small screens here */
        border-radius: 10px 10px 0px 0px;
    }

    .edit-modal-body {
        padding: 0px 0px 22px 0px;
        border-radius: 0px 0px 10px 10px;
        background-color: #F5F9FD;
        height: 93%;
    }


     /* Form Class */
    .edit-modal-content {
        height: 100%;
        width: 100%;
        margin: 0;
        margin-top: 0;
        -webkit-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
        -moz-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
        box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    }

    .edit-modal-content-mobile {
        height: 100%;
        width: 100%;
        margin: 0;
        margin-top: 0;
        -webkit-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
        -moz-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
        box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    }

    .edit-modal-name {
        width: 65%;
    }

}





.modal-big {
    min-height: 35%;
    width: 35%;
    margin: auto;
    margin-top: 10px;
    background-color: white;
    -webkit-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    -moz-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    border-radius: 10px 10px 10px 10px;
    background-color: #f5f9fd;
}

.modal-big-body {
    height: calc(100vh - 100px);
    overflow-y: scroll;
}



/*@media screen and (max-width: 1200px) {

    .edit-modal-name {
        width: 65%;
    }

}*/

/* Media query for small screens (up to 768px) */
@media screen and (max-width: 600px) {
    .edit-modal-content-process {
        width: 100%;
        height: 100%;
        margin: auto;
        /*margin-top: 2%;*/
        /* Uncomment the following line to add a background color for small screens */
        /* Add any other styles for small screens here */
        border-radius: 10px 10px 0px 0px;
    }

    .blazor-modal-header {
        border-radius: 10px 10px 0px 0px;
    }

    .edit-modal-body {
        padding: 0px 0px 22px 0px;
        border-radius: 0px 0px 10px 10px;
        background-color: #F5F9FD;
        height: 93%;
    }

    .edit-modal-content {
        height: 100%;
        width: 100%;
        margin: 0;
        margin-top: 0;
        -webkit-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
        -moz-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
        box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    }

    .edit-modal-content-mobile {
        height: 100%;
        width: 100%;
        margin: 0;
        margin-top: 0;
        -webkit-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
        -moz-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
        box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    }

    .blazor-modal-header {
        border-radius: 10px 10px 0px 0px;
    }

    .edit-modal-name {
        height: 100%;
        width: 100%;
        margin: auto;
        margin-top: 0%;
        background-color: white;
        -webkit-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
        -moz-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
        box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
        border-radius: 0px 0px 0px 0px;
        background-color: #f5f9fd;
    }

    .modal-big {
        height: 100%;
        width: 100%;
        margin: auto;
        margin-top: 0%;
        background-color: white;
        -webkit-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
        -moz-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
        box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
        border-radius: 10px 10px 10px 10px;
        background-color: #f5f9fd;
    }


}

/* Media query for screens larger than 1920 pixels */
@media screen and (min-width: 1921px) {
    /* Your styles for screens larger than 1920 pixels go here */
    .edit-modal-name {
        margin-top: 2%;
    }
}


.blazor-modal-footer-form {
    border-radius: 0px 0px 10px 10px;
    background-color: white;
}

.td-bg-color {
    background-color: none;
}

.td-bg-color-save {
    background-color: #f72824 !important;
}


.dropAreaNoFile {
    border: 2px dashed black;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: grey;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    min-height: 200px;
}


/* File Css*/
.dropArea {
    border: 2.5px dashed #dee2e6;
    /* padding: 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    min-height: 106px;
    color: #595c5f;
    border-radius: 5px;
}

    .dropArea:hover {
        background-color: lightskyblue;
      /*  color: #333;*/
    }

    .dropArea input[type=file] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

.dropAreaDrug {
    background-color: lightseagreen;
}


/* Team */

.team-modal-content {
    width: 60%;
    /*height: 50%;*/
    margin: auto;
    margin-top: 5%;
    background-color: white;
    /* border-radius: 5px; */
    /* -webkit-box-shadow: 6px 4px 38px -21px rgb(0 0 0 / 75%); */
    -moz-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    box-shadow: 6px 4px 38px -21px rgb(0 0 0 / 75%);
    overflow: hidden;
    border-radius: 10px 10px 10px 10px
}

.team-modal-header {
    display: flex;
    justify-content: space-between;
}

.team-textarea {
    resize: none;
    margin: 0% 0% 1% 0%;
    width: 100%;
    height: 100px;
}


.team-modal-body {
    padding: 0% 10% 1% 10%;
    min-height: 50vh;
}

.team-invite-link {
    margin: 5% 0% 5% 0%;
}

.save-links {
    color: #b9b9b9;
}

    .save-links:hover {
        color: black;
        cursor: pointer;
    }

.process-modal {
    height: 94%;
    overflow-y: auto;
    overflow-x: hidden;
}

/*Name Modal*/
.node-text {
    /* text-align: center; */
    width: 100%;
    /* margin-top: 15px; */
}

.modal-name-body-p {
    margin: 8% 6% 10% 6%
}

.modal-name-save-b-p {
    float: right;
}

.btn-p-confirm {
    padding: 6px 32px 5px 32px;
}

.mar-left-10 {
    margin-left: 10px;
}


.link-like {
    color: #0d6efd; /* Change color to suit your design */
    cursor: pointer; /* Change cursor to pointer to indicate interactivity */
    text-decoration: underline; /* Add underline to mimic link */
}

    .link-like:hover {
        color: darkblue; /* Change color on hover for visual feedback */
    }
