/* Featured Cryptos Frontend Styles */
.feat-crypto-box .td-fix-index {
    border: 1px solid #53235d;
    padding: 0 10px;
}
.feat-crypto-box .block-title.td-block-title {
    margin-bottom: 0 !important;
}
.featured-cryptos-container {
    margin: 0;
    padding: 0;
}

.featured-cryptos-title {
    font-size: 18px;
    margin-bottom: 0;
    color: #111;
    text-align: left;
    display: none;
}

.featured-cryptos-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background-color: #fff;
}

.featured-cryptos-row {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.featured-cryptos-row:last-child {
    border-bottom: none;
}

.featured-cryptos-row:hover {
    background-color: #f8f9fa;
}

.featured-cryptos-table td {
    padding: 0;
    border: 0;
    vertical-align: middle;
    padding-top: 10px;
}

.featured-cryptos-image {
    width: 60px;    
    text-align: center;
}

.featured-cryptos-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;    
    margin: 0;
    margin-bottom: 0 !important;
}

.featured-cryptos-name {
    font-size: 14px;
    color: #333;
    min-width: 120px;
    font-weight: 500;
    padding-left: 20px !important;
}

.featured-cryptos-link {
    text-align: right;
    width: 120px;
}

.featured-cryptos-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 14px;
    background-color: #53235d;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.3s ease;
    border: none;
}

.featured-cryptos-cta:hover {
    background-color: #005a87;
    color: #fff !important;
    text-decoration: none !important;
    transform: translateX(2px);
}

.featured-cryptos-cta:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured-cryptos-table {
        font-size: 14px;
    }
    
    .featured-cryptos-table td {
        padding: 10px;
    }
    
    .featured-cryptos-title {
        font-size: 20px;
    }
    
    .featured-cryptos-img {
        width: 40px;
        height: 40px;
    }
    
    .featured-cryptos-name {
        font-size: 14px;
    }
    
    .featured-cryptos-cta {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .featured-cryptos-image {
        width: 60px;
    }
    
    .featured-cryptos-link {
        width: 100px;
    } 
}
