/* member/css/member.css */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container { flex: 1; }

.navbar {
    padding: 12px 0;
}

.navbar-brand {
    font-weight: 700;
}

.card {
    border-radius: 12px;
}

.card-header {
    border-radius: 12px 12px 0 0 !important;
}

.btn {
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102,126,234,0.4);
}

.form-control {
    border-radius: 8px;
    border: 2px solid #e8e8e8;
    padding: 10px 14px;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102,126,234,0.15);
}

code {
    cursor: pointer;
    background: #f0f0ff;
    padding: 4px 8px;
    border-radius: 4px;
    color: #667eea;
}

.table th {
    font-weight: 600;
    font-size: 0.85rem;
}

.badge {
    border-radius: 20px;
    padding: 6px 12px;
}
