.bigimage-unicode-icon {
    font-size: 19px;
    font-weight: 700;
    display: block;
    border-radius: 4px;
    cursor: pointer
}

.bigimage-unicode-icon-disable {
    display: none !important
}

.print-disabled {
    pointer-events: none;
    opacity: .3
}

#print-params {
    width: 100%;
    text-align: center
}

#print-params > h6 {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
    color: inherit
}

#print-params > input[type=number] {
    border: 1px solid #999;
    border-radius: 4px
}

.close {
    color: rgba(0, 0, 0, .8);
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    top: 0;
    right: 5px
}

.close:focus, .close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer
}

.operation-btn {
    text-decoration: none;
    display: inline !important;
    padding-right: 3px;
    vertical-align: middle;
    font-size: 20px;
    margin: 3px
}

.see-btn:before {
    content: '\1F441'
}

.download-btn:before {
    content: '\2B07'
}

#print-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 30px;
    width: 30px;
    margin: -15px 0 0 -15px;
    border: 4px #a7a4ab solid;
    border-top: 4px #52006d solid;
    border-radius: 50%;
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.download-button {
    font-family: sans-serif;
    display: inline-block;
    font-size: 1em;
    text-align: center;
    padding: .3em .8em;
    background: linear-gradient(45deg, #2b71ad, #0c7162);
    color: #fff;
    box-shadow: 0 .4em .4em rgba(0, 0, 0, .25);
    border-radius: .4em;
    transition: box-shadow .2s ease-in-out;
    cursor: pointer;
    margin-top: 5px
}

.download-button:hover {
    box-shadow: 0 .1em .25em rgba(0, 0, 0, .25)
}

.percentage-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    font-family: Arial, sans-serif;
}

.percentage-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.percentage-cell label {
    font-weight: bold;
    margin-bottom: 5px;
}

.percentage-cell input {
    width: 80px;
    padding: 4px 8px;
    text-align: right;
}

@media (max-width: 600px) {
    .percentage-table {
        grid-template-columns: repeat(2, 1fr);
    }
}

.user-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    font-family: Arial, sans-serif;
}

.user-table thead th {
    text-align: left;
    padding: 12px;
    background-color: #f9f9f9;
    font-weight: 600;
    color: #333;
}

.user-table tbody tr {
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.user-table tbody td {
    padding: 12px;
    vertical-align: middle;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.user-name {
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
}

.chat-link {
    color: #fff;
    background-color: #28a745;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
}

.user-cell {
    display: flex;
    align-items: center;
}

.user-table tbody tr:hover {
    background-color: #f1f5ff;
}

.user-avatar-icon {
    font-size: 24px;
    color: black;
    margin-right: 10px;
}