/* templates/core/alquiler_material.html */

.price-badge {
        background: linear-gradient(135deg, #800020 0%, #a00030 100%);
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-weight: 600;
    }

    .student-price {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    }

    .tier-card {
        border-top: 3px solid #800020;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .tier-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    }

    .tier-bronce {
        border-top-color: #cd7f32;
    }

    .tier-plata {
        border-top-color: #c0c0c0;
    }

    .tier-oro {
        border-top-color: #ffd700;
    }

    .pricing-table th {
        background: linear-gradient(135deg, #800020 0%, #a00030 100%);
        color: white;
    }

    .pricing-table td {
        vertical-align: middle;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, #800020 0%, #FF6B35 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
    }
