﻿


gridPremium {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gridPremium th {
    background: linear-gradient(45deg, #4e73df, #224abe);
    color: white;
    padding: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gridPremium td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.gridPremium tr:nth-child(even) {
    background-color: #f8f9fc;
}

.gridPremium tr:hover {
    background-color: #e2e6f5;
    transition: 0.3s;
}

/* Ultra Premium Image */
.imgUltra {
    width: 85px;
    height: 85px;
    border-radius: 15px;
    border: 4px solid white;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

.imgUltra:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* Buttons */

.btnEdit {
    background: rgba(0, 123, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #007bff !important;
    padding: 7px 16px;
    border-radius: 10px;
    border: 1px solid rgba(0, 123, 255, 0.4);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btnEdit:hover {
    background: rgba(0, 123, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    transform: translateY(-2px);
}


.btnDelete {
    background: rgba(220, 53, 69, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #dc3545 !important;
    padding: 7px 16px;
    border-radius: 10px;
    border: 1px solid rgba(220, 53, 69, 0.4);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btnDelete:hover {
    background: rgba(220, 53, 69, 0.25);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
    transform: translateY(-2px);
}

.highlight {
    background: linear-gradient(90deg, #fff176, #ffd54f);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 6px;
}


/*////////////////////////////////////***/



.ggrridStyle {
  .ggrridStyle {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI';
}

.gridStyle th {
    background-color: #2c3e50;
    color: white;
    padding: 10px;
    text-align: left;
}

.gridStyle td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.gridStyle tr:hover {
    background-color: #f5f5f5;
}

/* Image Premium Style */
.imgPremium {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 3px solid #6c63ff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: 0.3s ease-in-out;
}

.imgPremium:hover {
    transform: scale(1.1);
    border-color: #000;
}