/* Zibll Guard Team Frontend Styles */
.zgt-apply-form { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); max-width: 600px; margin: 20px auto; }
.zgt-apply-form h3 { margin-top: 0; color: #333; }
.zgt-apply-form p { color: #666; margin-bottom: 15px; }
.zgt-apply-form .form-group { margin-bottom: 15px; }
.zgt-apply-form label { display: block; margin-bottom: 5px; font-weight: bold; color: #333; }
.zgt-apply-form textarea { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; resize: vertical; }
.zgt-apply-form textarea:focus { border-color: #0073aa; outline: none; }
.zgt-btn { padding: 10px 20px; border: none; border-radius: 4px; cursor: pointer; font-size: 14px; transition: all 0.3s; }
.zgt-btn-primary { background: #0073aa; color: #fff; }
.zgt-btn-primary:hover { background: #005a87; }
.zgt-btn-danger { background: #dc3545; color: #fff; }
.zgt-btn-danger:hover { background: #c82333; }
.zgt-btn-warning { background: #ffc107; color: #333; }
.zgt-btn-warning:hover { background: #e0a800; }
.zgt-btn-cancel { background: #6c757d; color: #fff; }
.zgt-btn-cancel:hover { background: #5a6268; }
.zgt-notice { padding: 15px; background: #d1ecf1; border: 1px solid #bee5eb; border-radius: 4px; color: #0c5460; }
.zgt-status-approved { padding: 20px; background: #d4edda; border: 1px solid #c3e6cb; border-radius: 8px; text-align: center; color: #155724; }
.zgt-status-pending { padding: 20px; background: #fff3cd; border: 1px solid #ffeeba; border-radius: 8px; text-align: center; color: #856404; }
.zgt-status-rejected { padding: 20px; background: #f8d7da; border: 1px solid #f5c6cb; border-radius: 8px; color: #721c24; margin-bottom: 20px; }
.zgt-guard-panel { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); margin: 20px 0; }
.zgt-panel-tabs { display: flex; gap: 10px; margin-bottom: 20px; border-bottom: 2px solid #eee; padding-bottom: 10px; }
.zgt-tab { padding: 10px 20px; background: #f5f5f5; border: none; cursor: pointer; border-radius: 4px 4px 0 0; }
.zgt-tab.active { background: #0073aa; color: #fff; }
.zgt-tab-content { display: none; }
.zgt-tab-content.active { display: block; }
.zgt-tab-content form { display: flex; flex-direction: column; gap: 10px; max-width: 400px; }
.zgt-tab-content input, .zgt-tab-content textarea { padding: 10px; border: 1px solid #ddd; border-radius: 4px; }
.zgt-tab-content textarea { min-height: 80px; resize: vertical; }
.zgt-loading { display: inline-block; width: 20px; height: 20px; border: 2px solid #f3f3f3; border-top: 2px solid #0073aa; border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.zgt-message { padding: 10px 15px; margin: 10px 0; border-radius: 4px; }
.zgt-message.success { background: #d4edda; color: #155724; }
.zgt-message.error { background: #f8d7da; color: #721c24; }

/* User Center Integration Styles */
.zgt-user-center-wrapper { max-width: 800px; margin: 0 auto; padding: 20px; }
.zgt-standalone-center { max-width: 900px; margin: 30px auto; padding: 20px; background: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.zgt-user-menu { background: #f5f5f5; padding: 15px; border-radius: 8px; margin-bottom: 20px; }
.zgt-user-menu ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; flex-wrap: wrap; }
.zgt-user-menu li { margin: 0; }
.zgt-user-menu a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: #fff; border-radius: 4px; text-decoration: none; color: #333; transition: all 0.3s; border: 1px solid #ddd; }
.zgt-user-menu a:hover { background: #0073aa; color: #fff; border-color: #0073aa; }
.zgt-user-menu li.active a { background: #0073aa; color: #fff; border-color: #0073aa; }
.zgt-user-menu .dashicons { font-size: 18px; width: 18px; height: 18px; }

/* Enhanced Guard Panel Styles */
.zgt-guard-panel { background: #fff; padding: 25px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); margin: 20px 0; }
.zgt-guard-panel h3 { margin-top: 0; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid #eee; }
.zgt-panel-tabs { display: flex; gap: 10px; margin-bottom: 20px; border-bottom: 2px solid #eee; padding-bottom: 10px; }
.zgt-tab { padding: 12px 24px; background: #f5f5f5; border: none; cursor: pointer; border-radius: 4px 4px 0 0; font-size: 14px; font-weight: 500; transition: all 0.3s; }
.zgt-tab:hover { background: #e5e5e5; }
.zgt-tab.active { background: #0073aa; color: #fff; }
.zgt-tab-content { display: none; animation: fadeIn 0.3s ease-in; }
.zgt-tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.zgt-tab-content form { display: flex; flex-direction: column; gap: 15px; max-width: 100%; }
.zgt-tab-content input, .zgt-tab-content textarea { padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; transition: border-color 0.3s; }
.zgt-tab-content input:focus, .zgt-tab-content textarea:focus { border-color: #0073aa; outline: none; box-shadow: 0 0 0 2px rgba(0,115,170,0.1); }
.zgt-tab-content textarea { min-height: 100px; resize: vertical; }

/* Enhanced Apply Form Styles */
.zgt-apply-form { background: #fff; padding: 25px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); max-width: 100%; margin: 20px 0; }
.zgt-apply-form h3 { margin-top: 0; margin-bottom: 15px; }
.zgt-apply-form p { color: #666; margin-bottom: 20px; line-height: 1.6; }
.zgt-apply-form .form-group { margin-bottom: 20px; }
.zgt-apply-form label { display: block; margin-bottom: 8px; font-weight: 600; color: #333; font-size: 14px; }
.zgt-apply-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; resize: vertical; min-height: 120px; }
.zgt-apply-form textarea:focus { border-color: #0073aa; outline: none; box-shadow: 0 0 0 2px rgba(0,115,170,0.1); }

/* Status boxes enhanced */
.zgt-status-approved { padding: 25px; background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%); border: 1px solid #b1dfbb; border-radius: 8px; text-align: center; color: #155724; font-size: 16px; }
.zgt-status-pending { padding: 25px; background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%); border: 1px solid #ffc107; border-radius: 8px; text-align: center; color: #856404; }
.zgt-status-rejected { padding: 25px; background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%); border: 1px solid #f5c6cb; border-radius: 8px; color: #721c24; margin-bottom: 20px; }
