/* Product UI Mockup Panels */
.mockup-panel {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    overflow: hidden;
    font-size: 16px;
    color: #333;
}

.mockup-titlebar {
    background: #052d51;
    color: #fff;
    padding: 14px 22px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-titlebar .dots {
    display: flex;
    gap: 5px;
}

.mockup-titlebar .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.mockup-titlebar .dots span:nth-child(1) { background: #ff5f57; }
.mockup-titlebar .dots span:nth-child(2) { background: #ffbd2e; }
.mockup-titlebar .dots span:nth-child(3) { background: #28c840; }

.mockup-body {
    padding: 24px;
}

/* Dashboard Cards */
.mockup-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.mockup-stat-card {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    border-left: 3px solid #53D13A;
}

.mockup-stat-card.warn { border-left-color: #ff9800; }
.mockup-stat-card.danger { border-left-color: #e53935; }
.mockup-stat-card.info { border-left-color: #1e88e5; }

.mockup-stat-card .stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #052d51;
    line-height: 1.2;
}

.mockup-stat-card .stat-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Tables */
.mockup-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.mockup-table th {
    background: #f1f3f5;
    padding: 11px 16px;
    text-align: left;
    font-weight: 600;
    color: #052d51;
    border-bottom: 2px solid #dee2e6;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mockup-table td {
    padding: 13px 16px;
    border-bottom: 1px solid #eee;
    color: #444;
}

.mockup-table tr:last-child td {
    border-bottom: none;
}

/* Status badges */
.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

.status-badge.current { background: #e8f5e9; color: #2e7d32; }
.status-badge.overdue { background: #ffebee; color: #c62828; }
.status-badge.due-soon { background: #fff3e0; color: #e65100; }
.status-badge.completed { background: #e3f2fd; color: #1565c0; }
.status-badge.open { background: #fff8e1; color: #f57f17; }
.status-badge.resolved { background: #e8f5e9; color: #2e7d32; }

/* Profile fields */
.mockup-field {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mockup-field:last-child {
    border-bottom: none;
}

.mockup-field .field-label {
    width: 210px;
    font-weight: 600;
    color: #052d51;
    flex-shrink: 0;
    font-size: 15px;
}

.mockup-field .field-value {
    color: #444;
    font-size: 15px;
}

/* Section headers inside mockups */
.mockup-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #052d51;
    margin: 20px 0 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid #53D13A;
    display: inline-block;
}

/* Audit trail entries */
.mockup-trail {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mockup-trail li {
    padding: 11px 0 11px 26px;
    border-left: 2px solid #dee2e6;
    position: relative;
    font-size: 15px;
    color: #555;
}

.mockup-trail li:before {
    content: '';
    position: absolute;
    left: -5px;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #53D13A;
}

.mockup-trail .trail-time {
    font-size: 13px;
    color: #999;
    display: block;
}

/* Responsive */
@media (max-width: 767px) {
    .mockup-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .mockup-field .field-label {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .mockup-stats {
        grid-template-columns: 1fr;
    }
}
