.dls-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: transparent;
    border: 2px solid #e5e5e5; 
    transition: all 0.3s ease;
}

/* Gradient border layer */
.dls-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;  
    background: linear-gradient(180deg, #0051E9 0%, #00D3E7 100%);
    
    /* Mask to show only border */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Hover Effect */
.dls-card:hover {
    transform: none;
    box-shadow: none;
}

.dls-card:hover::before {
    opacity: 1;
}



.dls-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.dls-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.dls-excerpt {
    flex-grow: 1;
}

 
.dls-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    margin-top: 15px;
    text-decoration: none;
}
.dls-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.dls-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid #000;
    border-radius: 50%;
    animation: dls-spin 0.8s linear infinite;
}

@keyframes dls-spin {
    100% { transform: rotate(360deg); }
}

/* Hide slider initially */
.dls-slider-wrapper {
   visibility: hidden;
}
.dls-card a {
     text-decoration: none;
}
.dls-author {
    display: flex;
    gap: 10px;
    align-items: center;
}


/*******/
.dls-table-responsive {
    overflow-x: auto;
}

/* =========================
   DLS TABLE DEFAULT STYLE
========================= */

.dls-custom-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    font-family: inherit;
    font-size: 15px;
}

/* Header */
.dls-custom-table thead {
    background: #0051E9;
}

.dls-custom-table thead th {
    color: #ffffff;
    font-weight: 600;
    padding: 16px 20px;
    text-align: left;
    border-top: 1px solid #D4E5F6;
    border-left: 1px solid #D4E5F6;
 
}

/* Body Cells */
.dls-custom-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #D4E5F6;
    color: #333;
}

/* Zebra Rows Default */
.dls-custom-table tbody tr:nth-child(odd) {
    background: #fff;
}

.dls-custom-table tbody tr:nth-child(even) {
    background: #E6F1FD;
}

/* Hover Effect */
.dls-custom-table tbody tr:hover {
    background: #D4E5F6;
    transition: background 0.3s ease;
}

/* Responsive Scroll */
.dls-table-responsive {
    overflow-x: auto;
    border-radius: 8px;
}

/* Smooth appearance */
.dls-custom-table tbody tr {
    transition: all 0.3s ease;
}
.dls-custom-table tbody td {
    color: #000;
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;  
}
.dls-custom-table tr th {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
}
/* Mobile stacked layout */
@media (max-width: 767px) {

    /* .dls-custom-table thead {
        display: none;
    }

    .dls-custom-table,
    .dls-custom-table tbody,
    .dls-custom-table tr,
    .dls-custom-table td {
        display: block;
        width: 100%;
    } */

    .dls-custom-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
    }

    .dls-custom-table td {
        text-align: right;
        position: relative;
        padding-left: 50%;
    }

    .dls-custom-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        text-align: left;
        font-weight: 600;
    }
}

