/*================================================================================
  PAGE: Vouchers
  TEMPLATE: templates/rewards/pages/vouchers.html
  FILE: core/static/css/pages/vouchers.css
  LOADED BY: {% block extra_head %} on the template
  Edit THIS file (not collected /static/). Then collectstatic in production.
================================================================================*/

.voucher-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    text-align: justify;
}
.voucher-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.15);
}
.copy-btn {
    font-size: 0.9rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}
.copy-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
.text-teal {
    color: #004c4c;
}
