/* Dashboard Extras */

.metric-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.metric-card h5 {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.metric-value {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.btn-block {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.rating {
    margin: 5px 0;
}

.rating i {
    font-size: 14px;
}

.status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.status.active {
    background: #d4edda;
    color: #155724;
}

.status.pending {
    background: #fff3cd;
    color: #856404;
}

.tfcl-card {
    transition: transform 0.2s ease;
}

.tfcl-card:hover {
    transform: translateY(-2px);
}

.tfcl-dashboard-listing h4 {
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.tfcl-listing-product {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.tfcl-listing-product:hover {
    background-color: #f8f9fa;
}

.tfcl-listing-product .image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.tfcl-listing-product .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tfcl-listing-product .content {
    flex: 1;
}

.tfcl-listing-product .content h6 {
    margin: 0 0 5px 0;
    font-weight: 600;
}

.tfcl-listing-product .content p {
    margin: 0 0 5px 0;
}

.tfcl-listing-product .content .price {
    color: #28a745;
    font-weight: bold;
}

.tfcl-listing-product .content small {
    color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tfcl-dashboard-overview .row > div {
        margin-bottom: 15px;
    }
    
    .btn-block {
        margin-bottom: 10px;
    }
    
    .tfcl-listing-product {
        flex-direction: column;
        text-align: center;
    }
    
    .tfcl-listing-product .image {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
