﻿@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

/* Custom CSS style */

body {
    padding-top: 100px;
    padding-bottom: 20px;
}

.externalEvaluationLabel{
    line-height: 1.7;
    color: #333;
    font-weight: 500;
}

.searchLabel, .externalEvaluationLabel{
    width:50%;
}

.dropdown-menu table {
    width: 300px;
}

@media (max-width: 576px){
    #imagesTable thead tr,
    #imaginiAtasateTable thead tr{
        display: none;
    }
    #imagesTable tbody tr,
    #imaginiAtasateTable tbody tr {
        display: inline-flex;
        flex-direction: column;
        width: 100%;
    }

    #imagesTable tr td:nth-child(1):before{
        content: "Nr. crt: ";
        font-weight: 400;
    }
    #imagesTable tr td:nth-child(4):before{
        content: "Comentarii: ";
        font-weight: bold;
    }

    #imaginiAtasateTable tr td:nth-child(2):after{
        content: " (Etichetă)";
        font-weight: 400;
    }
    #imaginiAtasateTable tr td:nth-child(2){
        font-weight: bold;
    }
    #imaginiAtasateTable tr td:first-child{
        display: none;
    }
}

@media (max-width: 576px){
    #imagesTable thead tr,
    #imaginiAtasateTable thead tr{
        display: none;
    }
    #imagesTable tbody tr,
    #imaginiAtasateTable tbody tr {
        display: inline-flex;
        flex-direction: column;
        width: 100%;
    }

    #imagesTable tr td:nth-child(1):before{
        content: "Nr. crt: ";
        font-weight: 400;
    }
    #imagesTable tr td:nth-child(4):before{
        content: "Comentarii: ";
        font-weight: bold;
    }
}    

.glyphicon::before, [class^="glyphicon-"]::before, [class*=" glyphicon-"]::before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-thumbs-up::before{
    content: "\F406";
}
.glyphicon-thumbs-down::before{
    content: "\F404";
}
.glyphicon-chevron-left::before{
    content: "\F284";
}
.glyphicon-chevron-right::before{
    content: "\F285";
}
.glyphicon-chevron-up::before{
    content: "\F286";
}
.glyphicon-chevron-down::before{
    content: "\F282";
}
.glyphicon-remove-circle::before{
    content: "\F623";
}
.glyphicon-plus-sign::before{
    content: "\f4f9";
}
@media(max-width: 1199.98px) {
    .modal-fullscreen-xl-down .modal-content {
        height: fit-content !important;
    }
    /* .modal-fullscreen-xl-down {
        height: auto!important;
    } */
}

.waitingCursor, .waitingCursor * {
    cursor: wait !important;
}

.maxContentExceeded{
    color: orangered;
}

.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.info-icon {
    color: #007bff;
    font-size: 18px;
}
.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.info-icon {
    color: #007bff;
    font-weight: bold;
}

.tooltip-text {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 6px 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    width: max-content;
    max-width: 250px;
    font-size: 13px;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}