/* Card Tabs Wrapper */
.class_1 {
    margin-bottom: 20px !important;
    margin-top: 20px !important;
    background-color: unset;
}

.class_2 {
  min-height: 40px; /* Sau dimensiunea pe care o consideri potrivită */

    display: flex;
    border-bottom: 1px solid #E8E8E8;
}

.class_3 {
    padding: 10px 20px;
    cursor: pointer;
    color: #9299A2;
    font-size: 16px;
    position: relative;
}

.class_3:hover {
    color: #4790eb;
}

.class_3.class_4 {
    color: #2E3640;
    font-weight: bold;
}

.class_3.class_4::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #3398DB; /* Culoarea de accent pentru tab-ul selectat */
}

.class_5 {
    white-space: nowrap;
}

/* Button Input */
.class_6 {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #F5F7FA;
    border: 1px solid #D1D9E0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #2E3640;
    text-decoration: none;
    transition: background-color 0.class_7;
}

.class_6:hover {
    background-color: #E9EEF3;
}

.class_8 {
    background-color: #3398DB;
    border-color: #3398DB;
    color: #FFFFFF;
}

.class_8:hover {
    background-color: #2A81BF;
    border-color: #2A81BF;
}

.class_9 {
    background-color: #3398DB;
    border-color: #3398DB;
    color: #FFFFFF;
}

.class_9:hover {
    background-color: #2A81BF;
    border-color: #2A81BF;
}

.class_10 {
    display: flex;
    align-items: center;
}

.class_11 {
    margin-left: 8px;
}

/* Linked Form Fields */
.class_12 {
    margin-top: 20px;
}

.class_13 {
    display: flex;
    margin-bottom: 16px;
}

.class_14 {
    width: 150px;
    font-size: 14px;
    color: #6E7E8C;
    line-height: 32px;
}

.class_15 {
    flex: 1;
}

.class_16 {
    width: 100%;
    padding: 8px;
    border: 1px solid #D1D9E0;
    border-radius: 4px;
    font-size: 14px;
    color: #2E3640;
    box-sizing: border-box;
}

.class_16:focus {
    border-color: #3398DB;
    outline: none;
}


.class_17 {
  width: 100%;
  padding: 8px;
  border: 1px solid #D1D9E0;
  border-radius: 4px;
  font-size: 14px;
  color: #2E3640;
  box-sizing: border-box;
}

.class_17:focus {
  border-color: #3398DB;
  outline: none;
}

/* List Styles */
.class_18 {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    table-layout: fixed; /* Adaugă această linie */
}

.class_19 {
    border-bottom: 1px solid #E8E8E8;
}

.class_20 {
    padding: 12px;
    font-size: 14px;
    color: #2E3640;
}

.class_20:first-child {
    width: 50px;
}

.class_20:last-child {
    width: 70%;
}

.class_21 {
    color: #3398DB;
    text-decoration: none;
    cursor: pointer;
}

.class_21:hover {
    text-decoration: underline;
}

/* Control Checkbox */
.class_22 {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.class_23 {
    opacity: 0;
    width: 0;
    height: 0;
}

.class_24 {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #D1D9E0;
    transition: background-color 0.class_7;
    border-radius: 12px;
}

.class_24::before {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: #FFFFFF;
    transition: transform 0.class_7;
    border-radius: 50%;
}

.class_23:checked + .class_24 {
    background-color: #3398DB;
}

.class_23:checked + .class_24::before {
    transform: translateX(20px);
}

/* Popup Modal */
.class_25 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(46, 54, 64, 0.class_26);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.class_27 {
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    width: 500px;
    max-width: 90%;
    box-sizing: border-box;
    position: relative;
}

.class_28 {
    font-size: 18px;
    font-weight: bold;
    color: #2E3640;
    margin-bottom: 16px;
}

.class_29 {
    margin-bottom: 16px;
}

.class_30 {
    display: block;
    font-size: 14px;
    color: #6E7E8C;
    margin-bottom: 8px;
}

/* Button in Popup */
.class_25 .class_6 {
    margin-top: 16px;
}

/* Close Button */
.class_31 {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #6E7E8C;
}

.class_31:hover {
    color: #2E3640;
}

/* Success Message */
.class_32 {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #F0F9EB;
    color: #3D8B3D;
    padding: 12px 20px;
    border: 1px solid #A5D6A7;
    border-radius: 4px;
    font-size: 14px;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.class_33;
}

.class_32.class_34 {
    opacity: 1;
}

.class_32.class_35 {
    opacity: 0;
}

/* Scrollbar Styling (optional) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #D1D9E0;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #B0BEC5;
}
/* Popup Modal */
.class_25 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(46, 54, 64, 0.class_26);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.class_27 {
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    width: 500px;
    max-width: 90%;
    box-sizing: border-box;
    position: relative;
}

.class_31 {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6E7E8C;
}

.class_31:hover {
    color: #2E3640;
}

/* Blochează scroll-ul când popup-ul este deschis */
.class_36 {
    overflow: hidden;
}



/* TAG */
.class_37 {
    display: inline-flex;
    max-width: 100%;
    padding: 4px 6px;
    align-items: center;
    gap: 5px;
    border-radius: 4px;
    cursor: pointer;
    width: fit-content;
    box-sizing: border-box;
    height: 24px;
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
  }
  
  .class_37.class_38 {
    display: flex;
    min-width: 40px;
    max-width: 120px;
    padding: 4px;
    align-items: center;
    gap: 5px;
    box-sizing: border-box;
  }
  
  .class_37.class_38>.class_39 {
    min-width: 12px;
    width: 12px;
    height: 12px;
  }
  
  .class_39 {
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: flex;
    align-items: center;
  }
  
  .class_39>svg {
    width: 100%;
    height: 100%;
  }
  
  .class_40 {
    overflow: hidden;
    color: rgba(0, 0, 0, 0.class_41);
    text-overflow: ellipsis;
    font-size: 12px;
  }
  
  /* TAGS ROW */
  .class_42 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
  }
  
  .class_43 {
    display: flex;
    height: 23px;
    box-sizing: border-box;
    padding: 4px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid var(--palette-border-primary, #E8EAEB);
    cursor: pointer;
    max-width: 35px;
  }
  
  .class_44 {
    overflow: hidden;
    color: var(--palette-text-secondary-light, #92989b);
    text-overflow: ellipsis;
    text-align: center;
    font-size: 12px;
    letter-spacing: -0.class_45;
  }
  
  .class_46{
    display: none;
  }
  
  /* PAGINATION */
  .class_47 {
    display: flex;
    align-items: center;
    width: 100%;
    user-select: none;
    background: var(--palette-background-default, #F5F5F5);
    height: 40px;
  }
  
  .class_48 {
    display: flex;
    margin: 0;
    font-size: 0;
    vertical-align: middle;
  }
  
  .class_49 {
    display: flex;
    fill: var(--palette-text-primary, #363B44);
    width: 34px;
    height: 39px;
    align-items: center;
    justify-content: center;
    color: #CCCCCC;
    transition: all .class_7 ease;
    background: 0 0;
    cursor: pointer;
    border: 0;
    flex-shrink: 0;
    transform: rotate(-180deg);
  }
  
  .class_50 {
    display: flex;
    fill: var(--palette-text-primary, #363B44);
    width: 34px;
    height: 39px;
    align-items: center;
    justify-content: center;
    color: #CCCCCC;
    transition: all .class_7 ease;
    background: 0 0;
    cursor: pointer;
    border: 0;
    flex-shrink: 0;
  }
  
  .class_51 {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 10px;
  }
  
  .class_52 {
    cursor: pointer;
  }
  
  .class_52.class_4 {
    color: var(--palette-text-primary, #363B44);
    font-weight: 600;
  }
  
  /* COLORPICKER TIP */
  .class_53.class_54 {
    left: inherit;
  }
  
  .class_53 .class_55 {
    width: 177px;
    padding: 0;
    border: 1px solid var(--palette-border-primary);
    border-radius: 0;
    box-shadow: none;
  }
  
  .class_56 {
    display: inline-block;
    padding: 5px;
    margin: 0;
    text-align: center;
    height: 19px;
  }
  
  .class_56>span {
    padding: 0 7px;
    border-radius: 12px;
  }
  
  /* PLAYER */
  .class_57 {
    width: 400px;
    height: 33px;
    z-index: 155;
  }
  
  .class_57:before {
    max-width: 100%;
    max-height: 100%;
    left: 0;
    top: 0;
    opacity: 1;
    position: absolute;
    z-index: 0;
    transition: all .class_33;
    border: 1px solid #4c8bf7;
    background: var(--palette-background-primary);
    box-sizing: border-box;
    border-radius: 2px;
  }
  
  .class_58 {
    opacity: 1;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 9px rgba(0, 0, 0, .class_59);
    transition: opacity .class_60;
    transition-delay: .class_33;
    width: 100%;
    height: 100%;
    border: 1px solid #4c8bf7;
    background: var(--palette-background-primary);
    box-sizing: border-box;
    border-radius: 2px;
  }
  
  .class_61 {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100%;
    cursor: pointer;
    justify-content: center;
    width: 34px;
  }
  
  .class_62 {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #4c8bf7;
  }
  
  .class_63 {
    flex-shrink: 0;
    height: 100%;
    cursor: pointer;
    width: 34px;
    display: none;
    align-items: center;
    justify-content: center;
  }
  
  .class_64 {
    content: "";
    width: 4px;
    height: 10px;
    border-radius: 2px;
    background: var(--palette-active-element-900);
    border: 0;
  }
  
  .class_64:first-child {
    margin-right: 4px;
  }
  
  .class_65 {
    justify-content: flex-start;
    padding-left: 5px;
    width: 20px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100%;
    cursor: pointer;
  }
  
  .class_66 {
    content: "";
    height: 10px;
    width: 10px;
    background: var(--palette-active-element-900);
    border-radius: 2px;
  }
  
  .class_67 {
    position: relative;
    overflow: hidden;
    align-self: center;
    flex: 1 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .class_67::before {
    content: "";
    position: absolute;
    top: calc(50% - 2.class_68);
    width: 100%;
    height: 5px;
    border-radius: 2px;
    background: #ddd;
    border: 0;
    display: flex;
  }
  
  .class_69 {
    height: 5px;
    width: 0;
    z-index: 1;
    cursor: pointer;
    width: 100%;
  }
  
  .class_70 {
    height: 5px;
    width: 0;
    background: var(--palette-active-element-900);
    border-radius: 2px;
  }
  
  .class_71 {
    flex-shrink: 0;
    height: 33px;
    line-height: 33px;
    padding: 0 12px;
    color: var(--palette-text-secondary-light);
  }
  
  .class_72 {
    font-size: 13px;
    padding: 0 2px 0 0;
    color: var(--palette-text-secondary-light);
    font-style: normal;
  }
  
  .class_73 {
    font-size: 13px;
    padding: 0 0 0 2px;
    font-weight: 400;
  }
  
  .class_74 {
    width: 61px;
    position: relative;
    z-index: 10;
    color: var(--palette-text-primary);
    height: 36px;
  }
  
  .class_75 {
    display: none;
    list-style: none;
  }
  
  .class_75.class_76 {
    min-width: 120px;
    z-index: 30;
    bottom: 3px;
    top: auto;
    display: block;
    width: 100%;
    left: -13px;
    border: 1px solid #e8eaeb;
    border: 1px solid var(--palette-border-primary);
    background-color: var(--palette-background-primary);
    padding-right: 11px;
    height: auto;
    margin-right: -13px;
    border-radius: 3px;
    overflow: auto;
    position: absolute;
    max-height: 211px;
    bottom: auto;
    top: 0
  }
  
  .class_77 {
    cursor: pointer;
    position: relative;
    list-style-type: none;
    padding: 8px 6px 7px 0;
    margin: 0 -11px 0 0;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  .class_77:hover {
    background-color: var(--palette-hover-default);
  }
  
  .class_78 {
    position: relative;
    display: block;
    padding-left: 22px;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: normal;
    z-index: 2;
  }
  
  .class_79 {
    border: 0;
    height: inherit;
    background: 0 0;
    padding-left: 0;
    text-align: right;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    max-width: 100%;
    display: inline-block;
    position: relative;
    width: 100%;
    z-index: 10;
    outline: 0;
    border-radius: 3px;
    padding: 1px 25px 0 0;
    color: inherit;
  }
  
  .class_79:after {
    content: '';
    position: absolute;
    top: calc(50% - 5px);
    width: 6px;
    height: 6px;
    border-bottom: 1px solid var(--palette-text-primary);
    border-right: 1px solid var(--palette-text-primary);
    transform: rotate(45deg);
    margin-left: 7px;
    right: 12px;
    z-index: 10;
  }
  
  /* TIPPY THEMES */
  .class_80[data-theme~='transparent'] {
    background-color: transparent;
    box-shadow: none;
  }
  
  .class_80[data-theme~='transparent'] .class_81 {
    color: transparent;
  }
  
  /* OTHERS */
  .class_82{
    color: var(--palette-text-secondary-dark, #676E79);
    margin: 0 10px;
  }
  
  .class_83{
    color: #721C24;
    font-weight: 700;
    border-radius: 4px;
    border: 1px solid #F5C6CB;
    background: #F8D7DA;
    display: inline-flex;
    height: 20px;
    min-width: 40px;
    max-width: 180px;
    padding: 4px 6px;
    align-items: center;
    box-sizing: border-box;
    gap: 5px;
  }
  
  .class_84{
    cursor: default;
    position: relative;
    list-style-type: none;
    padding: 8px 6px 7px 0px;
    margin: 0 -11px 0 0;
    overflow: hidden;
    box-sizing: border-box;
    font-weight: bold;
    color: var(--palette-text-secondary-light);
  }
  
  .class_85{
    position: relative;
    display: block;
    padding-left: 10px;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: normal;
    z-index: 2;
  }



  .class_86 {
	text-decoration: underline;
	margin-left: 11px;
	cursor: pointer;
}

.class_86.class_87{
	color : var(--palette-text-secondary-disabled-dark, #8092ad);
}

.class_88 .class_89 {
	width: 60vw;
}





/* Stiluri generale pentru secțiunea История */
.class_90 {
  display: none;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.class_59);
}

/* Container pentru filtre */
.class_91 {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.class_92 {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
/*
.class_16 {
  width: 170px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #333;
  background-color: #f8f8f8;
  transition: border-color 0.class_33;
}*/

.class_16:focus {
  border-color: #4C8BF7;
}

/* Stiluri pentru tabel */
.class_93 {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.class_94);
}

.class_93 thead {
  background-color: #f7f9fc;
}

.class_93 th {
  padding: 12px 16px;
  font-weight: 600;
  text-align: left;
  font-size: 14px;
  color: #4a4a4a;
  border-bottom: 2px solid #e1e4e8;
}

.class_93 td {
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

/* Efect hover pentru rânduri */
.class_93 tbody tr:hover {
  background-color: #f9f9ff;
}

/* Stiluri pentru celula user */
.class_95 {
  display: flex;
  align-items: center;            /* Centrează vertical */
  padding: 8px;
}

.class_96 {
  font-weight: bold;
}

.class_97 {
  display: flex;
  gap: 8px;                        /* Distanță între iconițe */
  margin-left: auto;               /* Împinge iconițele la sfârșitul celulei */
}


/* Stiluri pentru iconițe */
.class_98 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #e8f0fe;
  cursor: pointer;
  transition: background-color 0.class_33;
}

.class_98:hover {
  background-color: #d0e2fc;
}

.class_98 svg {
  width: 16px;
  height: 16px;
  fill: #4C8BF7;
}
