/* app/static/css/proveedores.css */

.proveedores-container {
    padding: 20px;
    animation: fadeIn 0.5s ease-out;
}

/* Glassmorphism Cards */
.card-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Header Style */
.premium-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(29, 38, 113, 0.8), rgba(195, 55, 100, 0.8));
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 20px rgba(195, 55, 100, 0.2);
}

.premium-header h2 {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: white !important;
}

/* Form Styles */
.form-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-premium {
    margin-bottom: 15px;
}

.form-group-premium label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a4a4a;
    font-size: 0.9rem;
}

.form-control-premium {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control-premium:focus {
    border-color: #c33764;
    box-shadow: 0 0 0 4px rgba(195, 55, 100, 0.1);
    outline: none;
    background: #fff;
}

/* Table Styles */
.table-premium {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.table-premium thead th {
    background: transparent;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 15px;
    border: none;
}

.table-premium tbody tr {
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.table-premium tbody tr:hover {
    background: #fdfdfd;
    transform: scale(1.01);
}

.table-premium td {
    padding: 15px;
    vertical-align: middle;
    border: none;
}

.table-premium td:first-child { border-radius: 12px 0 0 12px; }
.table-premium td:last-child { border-radius: 0 12px 12px 0; }

/* Status Badges */
.badge-premium {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-cuit {
    background: rgba(195, 55, 100, 0.1);
    color: #c33764;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-premium {
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-save-premium {
    background: linear-gradient(135deg, #1d2671, #c33764);
    color: white;
    box-shadow: 0 4px 15px rgba(195, 55, 100, 0.3);
}

.btn-save-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(195, 55, 100, 0.4);
}