.text-area-admin {
    height: 100px;
    line-height: 1.5;
}
select.form-control{
    background-color: white;
    color: black;
}
.limit-two-lines {
    max-height: 3.6em; /* Sesuaikan dengan tinggi dua baris, 1em sekitar setengah baris */
    overflow: hidden;
    text-overflow: ellipsis; /* Menambahkan tanda elipsis (...) jika teks melebihi tinggi maksimum */
    line-height: 1.8em; /* Menentukan tinggi baris, disesuaikan dengan font size */
}
.limit-one-lines {
    max-height: 1.8em; /* Sesuaikan dengan tinggi dua baris, 1em sekitar setengah baris */
    overflow: hidden;
    text-overflow: ellipsis; /* Menambahkan tanda elipsis (...) jika teks melebihi tinggi maksimum */
    line-height: 1.8em; /* Menentukan tinggi baris, disesuaikan dengan font size */
}

.background-link-baca{
    text-decoration: none;
    color: black;
    background: #e3e4e6;
   }
.background-link-baca.active{
    text-decoration: none;
    color: black;
    background: white;
   }
.link-baca{
 text-decoration: none;
 color: black;
}
.link-baca:hover{
    color: black;
}
.link-baca.active{
    text-decoration: none;
    color: #1fb0ab;
   }
.link-baca.active:hover{
    text-decoration: none;
    color: #1fb0ab;
   }
.link-home-superadmin{
    color: black;
    text-decoration: none;
}
.link-home-superadmin:hover{
    text-decoration: none;
    color: #1fb0ab;
   }
.link-header{
    text-decoration: none;
    color: #1fb0ab;
}
.link-header:hover{
    text-decoration: none;
    color: #1fb0ab;
}

.text-link{
    text-decoration: none;
    color: #1fb0ab;
    font-weight: 600;
}