--iplc-danger: #f44336; --iplc-dark: #212121; --iplc-light: #F5F5F5; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; background-color: #f8f9fa; min-height: 100vh; } .navbar { background-color: var(--iplc-primary); box-shadow: 0 2px 4px rgba(0,0,0,.1); } .navbar-brand { color: white !important; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; } .navbar-brand img { height: 32px; } .container-main { margin-top: 2rem; margin-bottom: 2rem; } .page-header { background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); margin-bottom: 2rem; } .page-header h1 { color: var(--iplc-primary); margin-bottom: 0.5rem; } .template-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 1.5rem; } .template-card { background: white; border-radius: 8px; padding: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: all 0.3s ease; cursor: pointer; position: relative; border: 2px solid transparent; } .template-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); border-color: var(--iplc-primary); } .template-icon { width: 48px; height: 48px; background: var(--iplc-primary); color: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; } .template-title { font-size: 1.25rem; font-weight: 600; color: var(--iplc-dark); margin-bottom: 0.5rem; } .template-description { color: #666; margin-bottom: 1rem; line-height: 1.5; } .template-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; color: #999; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #eee; } .template-badge { background: var(--iplc-accent); color: var(--iplc-dark); padding: 0.25rem 0.75rem; border-radius: 4px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; } .ai-enabled { background: linear-gradient(135deg, #9b59b6, #8e44ad); color: white; } .empty-state { text-align: center; padding: 4rem 2rem; color: #999; } .empty-state i { font-size: 4rem; margin-bottom: 1rem; opacity: 0.5; } .loading-spinner { display: flex; justify-content: center; align-items: center; min-height: 400px; } .spinner-border { width: 3rem; height: 3rem; color: var(--iplc-primary); } .search-bar { background: white; padding: 1.5rem; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); margin-bottom: 2rem; } .search-input { border: 1px solid #ddd; border-radius: 4px; padding: 0.75rem 1rem; width: 100%; font-size: 1rem; } .search-input:focus { outline: none; border-color: var(--iplc-primary); box-shadow: 0 0 0 0.2rem rgba(0, 71, 171, 0.25); } .filter-buttons { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; } .filter-btn { padding: 0.5rem 1rem; border: 1px solid #ddd; background: white; border-radius: 4px; cursor: pointer; transition: all 0.3s ease; font-size: 0.875rem; } .filter-btn:hover { background: #f8f9fa; } .filter-btn.active { background: var(--iplc-primary); color: white; border-color: var(--iplc-primary); } .btn-back { background: transparent; color: var(--iplc-primary); border: 1px solid var(--iplc-primary); padding: 0.5rem 1rem; border-radius: 4px; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; } .btn-back:hover { background: var(--iplc-primary); color: white; }
Loading...