        .title { text-align: center; margin-bottom: 20px; }
        
        /* Filter Section Style */
        .filter-container { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; background: #fff; padding: 15px 20px; border-radius: 8px; box-shadow: 0 2px 6px rgba(0,0,0,0.05); }
        .filter-group label { font-weight: bold; margin-right: 10px; }
        .filter-group select { padding: 8px 12px; border-radius: 4px; border: 1px solid #ccc; font-size: 14px; cursor: pointer; }
        
        /* Grid Tampilan Album Event */
        .event-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
        .event-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.08); transition: transform 0.2s; text-decoration: none; color: inherit; }
        .event-card:hover { transform: translateY(-5px); }
        .event-card img { width: 100%; height: 180px; object-fit: cover; }
        .event-card-body { padding: 15px; }
        .event-card-title { font-size: 18px; font-weight: bold; margin-bottom: 10px; color: #2c3e50; }
        .event-card-meta { font-size: 13px; color: #7f8c8d; }

        /* Grid Detail Foto */
        .photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 15px; }
        .photo-item { overflow: hidden; border-radius: 6px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
        .photo-item img { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform 0.3s; }
        .photo-item img:hover { transform: scale(1.05); }
        .btn-back { display: inline-block; margin-bottom: 20px; padding: 10px 15px; background: #34495e; color: white; text-decoration: none; border-radius: 4px; }