/**
 * Path: nplsportspro/assets/css/templates/match/tabs/details.css
 * Layout: Professional 3-Column Cards
 */

.nplsp-details-tab-wrapper {
    padding: 10px 0 !important;
}

.nplsp-details-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
}

/* Card Styling */
.nplsp-pro-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.2s ease !important;
}

.nplsp-pro-card:hover {
    transform: translateY(-5px) !important;
}

.nplsp-card-header {
    background: #f8fafc !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid #e2e8f0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.nplsp-card-header i {
    color: #1a73e8 !important;
    font-size: 20px !important;
}

.nplsp-card-header h3 {
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
}

.nplsp-card-body {
    padding: 20px !important;
}

.nplsp-detail-row {
    margin-bottom: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.nplsp-detail-row:last-child {
    margin-bottom: 0 !important;
}

.nplsp-label {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #64748b !important;
    letter-spacing: 0.5px !important;
}

.nplsp-value {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
}

/* --- 7 DEVICES RESPONSIVE --- */

/* 1. Large Screen (1400px+) */
@media (min-width: 1400px) {
    .nplsp-details-cards-grid { gap: 30px !important; }
}

/* 2. Desktop (1200px) */
@media (max-width: 1399px) {
    .nplsp-details-cards-grid { gap: 20px !important; }
}

/* 3. Laptop (992px) */
@media (max-width: 1199px) {
    .nplsp-details-cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* 4. Tablet Landscape (768px) */
@media (max-width: 991px) {
    .nplsp-pro-card { border-radius: 8px !important; }
}

/* 5. Tablet Portrait (600px) */
@media (max-width: 767px) {
    .nplsp-details-cards-grid { grid-template-columns: 1fr !important; }
}

/* 6. Mobile Standard (480px) */
@media (max-width: 599px) {
    .nplsp-card-header { padding: 12px 15px !important; }
    .nplsp-card-body { padding: 15px !important; }
}

/* 7. Extra Small Mobile (320px) */
@media (max-width: 479px) {
    .nplsp-value { font-size: 13px !important; }
}