/* Ascunde toate checkbox-urile nebifate */
input.bifat[type="checkbox"]:not(:checked) {     width: 15px;    height: 15px;    display: nane;}

/* Checkbox bifat vizibil */
input.bifat[type="checkbox"]:checked {margin-bottom:-1px;
    width: 15px;
    height: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #3498db; /* albastru */
    border-radius: 4px;
    position: relative;
    cursor: default;
}

/* Semn de bifă alb */
input.bifat[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 0px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}




body {background: #efefef;}
.feesActions {
    display: flex;
    align-items: center;        /* aliniere verticală */
    justify-content: space-between; /* stânga / dreapta */
}

#feesTable thead, #authorFeesTable thead {height:40px;}

#editFeesForm { margin-bottom:30px;
    display: flex;
    gap: 20px;           /* spațiu între tabel și butoane */
    align-items: center;  /* aliniere verticală centru */
}

.add-fee-btn {
    display: flex;
    flex-direction: column;  /* butoanele unul sub altul */
    justify-content: center;  /* aliniere verticală centru în div */
    align-items: center;      /* aliniere orizontală centru în div */
    gap: 10px;                /* spațiu între butoane */
}

.fee-btn { height:26px; wight: 70px;
    padding: 2px 10px;
    font-size: 12px;
    background-color: green;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.fee-btn:hover {
    background-color: blue;
}

body.page-add_authors input[type="checkbox"] {width: 15px; height: 15px; accent-color: #2ecc71; cursor: pointer;}

#author-fees-frame { font-family: Arial, sans-serif; margin:10px 40px; }

table { border-collapse: collapse; width:100%; font-size:12px; }
th, td { border:1px solid #ccc; padding:4px 6px; text-align:center; vertical-align: middle; }
th { background:#f4f4f4; }

tr.author-fees, #feesTable tbody tr, tr {background: #fefefe;}
tr.author-fees:hover td {background-color: rgba(0,150,255,0.1);}

input[type=text], select { font-size:12px; padding:3px; }
button { font-size:12px; padding:3px 6px; cursor:pointer; }
.checkbox-cell { text-align:center; }
.editCell { white-space: nowrap; }
.saveAllBtn { background: #2d8fdd; color: white; border: none; border-radius: 4px; }
/* highlight spectacol */
.feeRow.hovered td {background-color: #eaf4ff;}

.authorsHeader,.feesHeader {display: flex; align-items: center;justify-content: space-between; margin-bottom: 5px;}
.authorsHeader, .feesHeader h3 {margin: 0; font-size:16px;}
.authorsActions, .feesActions button { margin-left: 6px;}

/* Add button */
.add-btn {display: inline-block; padding: 6px 12px; font-size: 12px; background: #2c7be5; color: #fff; text-decoration: none; border-radius: 4px; white-space: nowrap; border: 0px;}
.add-btn:hover {background: #1a68d1; }