


























.certificate-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; } .certificate-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: transform 0.3s ease; } .certificate-card:hover { transform: translateY(-5px); } .preview-placeholder { height: 160px; background: #eee; display: flex; align-items: center; justify-content: center; color: #888; font-size: 14px; } .certificate-info { padding: 15px; } .certificate-title { margin: 0 0 10px; font-size: 12px; font-weight: 600; } .download-btn { display: inline-block; padding: 8px 15px; background: #0004f8ff; color: white; text-decoration: none; border-radius: 4px; font-size: 14px; transition: background 0.3s; } .download-btn:hover { background: #ffffff; color: #0004f8ff; border: 1px solid #0004f8ff; } .no-certificates { text-align: center; padding: 40px; background: white; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } .certificate-country { font-size: 12px; color: #666; margin-bottom: 8px; } .form-inline .form-control { width: 200px; } .input-group { width: 250px; } @media (max-width: 767px) { .form-inline .form-control, .input-group { width: 100%; } .col-md-6 { margin-bottom: 15px; } }