.text-center{
    text-align: center;
}
.bg-black-custom{
    background-color: #292929 !important;
    background: #292929 !important;
}
.bg-green-custom {
    background-color: #2c7746 !important;
    background: #2c7746 !important;
}
.footer-list li:before{
    color: #292929 !important;
}

.list-post-wrap_column .list-post-content {
    min-height: 95px;
}

.skeleton {
    background-color: #c8c8c8;
    height: 50px;
    margin: 10px 0;
    border-radius: 4px;
    animation: pulse 1.5s infinite ease-in-out;
}

.slider_skeleton {
    width: 100%;
    margin: 20px;
    height: 90%;
    background-color: #c8c8c8;
    border-radius: 4px;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}



.skeleton-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* width: 600px;
    height: 150px; */
    width: 100%;
    margin-bottom: 20px;
}

.skeleton-image {
    width: 100px;
    height: 110px;
    background-color: #e0e0e0;
    border-radius: 10px;
    margin-right: 20px;
}

.skeleton-text {
    flex: 1;
}

.skeleton-line {
    background-color: #e0e0e0;
    border-radius: 5px;
    height: 20px;
    margin: 10px 0;
    animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-line.sk-title {
    width: 40%;
    height: 30px;
}

.skeleton-line.sk-long {
    width: 90%;
}

.skeleton-line.sk-thin {
    width: 50%;
    height: 12px;
}

.skeleton-line.sk-foot {
    width: 60%;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.scroll-down-wrap span{
    color: #fff;
}
.scroller{
    background-color: #fff;
}


/* Style dasar untuk tabel */
.mytable {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Header tabel dengan warna latar khusus */
.mytable thead {
    background-color: #2c7746;
    /* Warna latar header */
    color: #ffffff;
}

.mytable thead th {
    padding: 12px;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #2c7746;
}

/* Warna latar pada baris pertama tbody */
.mytable tbody tr:first-child {
    background-color: #2c7746;
    /* Warna latar pada baris pertama */
    color: #ffffff;
    /* Warna teks pada baris pertama */
}
.mytable tbody tr:first-child p, .mytable tbody tr:first-child strong{
    color: #ffffff;
}

/* Alternating row colors */
.mytable tbody tr:nth-child(odd):not(:first-child) {
    background-color: #f9f9f9;
    /* Warna baris ganjil, kecuali baris pertama */
}

.mytable tbody tr:nth-child(even):not(:first-child) {
    background-color: #e9ecef;
    /* Warna baris genap, kecuali baris pertama */
}

/* Efek hover */
.mytable tbody tr:hover {
    background-color: #d6d6d6;
    /* Warna latar saat hover */
}

/* Sel tabel */
.mytable td,
.mytable th {
    padding: 12px;
}

/* Responsif */
.mytable-wrapper {
    overflow-x: auto;
    margin-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.mytable tbody tr:first-child:hover{
    background-color: #167f3b;
}