/* Home Screen Widget Cards */

#home-events-activities,
#home-favorites-journeys {
    max-height: 200px;
    scrollbar-width: thin;
    scrollbar-color: #94a3b8 #f1f5f9;
}

#home-events-activities::-webkit-scrollbar,
#home-favorites-journeys::-webkit-scrollbar {
    width: 4px;
}

#home-events-activities::-webkit-scrollbar-track,
#home-favorites-journeys::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 2px;
}

#home-events-activities::-webkit-scrollbar-thumb,
#home-favorites-journeys::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 2px;
}

/* Widget Tile Styles */
.home-widget-tile {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
    pointer-events: auto;
    user-select: none;
}

.home-widget-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: #0ea5e9;
    background: rgba(255, 255, 255, 0.9);
}

.home-widget-tile-title {
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-widget-tile-subtitle {
    font-size: 10px;
    color: #64748b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-widget-tile-date {
    font-size: 10px;
    color: #0ea5e9;
    font-weight: 500;
    margin-top: 4px;
}

.home-widget-empty {
    text-align: center;
    padding: 20px 10px;
    color: #94a3b8;
    font-size: 11px;
}

.home-widget-empty svg {
    width: 32px;
    height: 32px;
    margin: 0 auto 8px;
    opacity: 0.5;
}

/* Badge for activity count */
.home-widget-badge {
    display: inline-block;
    background: #0ea5e9;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 4px;
}
