/* assets/uye-panel.css */
.panel-wrapper { background-color: #f9fafb; min-height: 70vh; }
.panel-header {
    text-align: center;
    margin-bottom: 3rem;
}
.panel-header h1 { font-size: 2.5rem; font-weight: 800; color: #1f2937; }
.panel-header p { font-size: 1.1rem; color: #6b7280; margin-top: 0.5rem; }

.panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .panel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .panel-grid { grid-template-columns: repeat(3, 1fr); } }

.panel-kart {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.panel-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.panel-kart i {
    font-size: 2.5rem;
    color: #4f46e5;
    margin-bottom: 1rem;
    display: block;
}
.panel-kart h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.panel-kart p {
    color: #6b7280;
    line-height: 1.6;
}
.logout-kart i { color: #ef4444; }
