/**
 * WOCM Hot Meals Plugin - Card Styles
 * Fixed height cards with scroll for long content
 */

/* Card container styling */
.wocm-hm-card {
    background: #ffffff;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 220px;
    max-height: 220px;
    overflow-y: auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover effect */
.wocm-hm-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2) !important;
    border-color: #0052a3 !important;
}

/* Custom scrollbar styling */
.wocm-hm-card::-webkit-scrollbar {
    width: 6px;
}

.wocm-hm-card::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.wocm-hm-card::-webkit-scrollbar-thumb {
    background: #0052a3;
    border-radius: 3px;
}

.wocm-hm-card::-webkit-scrollbar-thumb:hover {
    background: #003d7a;
}

/* Firefox scrollbar */
.wocm-hm-card {
    scrollbar-width: thin;
    scrollbar-color: #0052a3 #f1f1f1;
}

/* Organization name styling */
.wocm-hm-card strong a {
    color: #0052a3;
    text-decoration: none;
    font-size: 14px;
}

.wocm-hm-card strong a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wocm-hm-card {
        height: auto;
        max-height: 300px;
    }
}

