/* ===== COMMON STYLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: Arial, sans-serif;background: #f5f5f5;}

/* ===== LOGIN PAGE ===== */
.login-body { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.login-container { width: 100%; max-width: 420px; padding: 20px; }
.login-card { background: #fff; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); padding: 40px; }
.logo-header { text-align: center;  margin-bottom: 30px; }
.logo { text-align: center; }
.logo-career { font-weight: 700; color: #14213d;}
.logo-bridge {font-weight: 600;color: #635dfd;}
.logo-header p { color: #666; font-size: 14px; margin-top: 5px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #333; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-size: 14px; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: #667eea; }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group small { color: #666; font-size: 12px; }
.alert { padding: 12px; border-radius: 5px; margin-bottom: 20px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.btn { padding: 12px 20px; border: none; border-radius: 5px; cursor: pointer; font-size: 16px; font-weight: 600; text-decoration: none; display: inline-block; }
.btn-primary { background: #007bff; color: #fff; width: 100%; }
.btn-primary:hover { background: #0056b3; }
.btn-secondary { background: #6c757d; color: #fff; }
.btn-secondary:hover { background: #545b62; }
.btn-sm { padding: 6px 12px; font-size: 12px; margin: 2px; }
.btn-success { background: #28a745; color: #fff; }
.btn-danger { background: #dc3545; color: #fff; }
.btn-warning { background: #ffc107; color: #000; }
.btn-info { background: #17a2b8; color: #fff; }
.links { text-align: center; margin-top: 20px; }
.links a { color: #667eea; text-decoration: none; margin: 0 10px; }
.links a:hover { text-decoration: underline; }
.text-center { text-align: center; margin-top: 20px; }
.text-center a { color: #007bff; text-decoration: none; }

/* ===== HELP PAGE ===== */
.help-container { max-width: 1000px; margin: 40px auto; padding: 20px; }
.help-card { background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); padding: 40px; margin-bottom: 20px; }
.help-header { text-align: center; margin-bottom: 40px; }
.help-header h1 { color: #333; margin-bottom: 10px; }
.help-header p { color: #666; font-size: 16px; }
.help-section { margin-bottom: 40px; }
.help-section h2 { color: #007bff; margin-bottom: 20px; border-bottom: 2px solid #007bff; padding-bottom: 10px; }
.help-section h3 { color: #333; margin-top: 20px; margin-bottom: 10px; }
.help-section ul { margin-left: 20px; line-height: 1.8; }
.help-section li { margin-bottom: 10px; }
.help-section p { line-height: 1.8; color: #555; margin-bottom: 15px; }
.note-box { background: #f8f9fa; border-left: 4px solid #007bff; padding: 15px; margin: 20px 0; }
.note-box strong { color: #007bff; }

/* ===== REGISTER PAGE ===== */
.register-body { background: #f5f5f5; }
.register-container { max-width: 600px; margin: 60px auto; padding: 20px; }
.register-card { background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); padding: 40px; }
.register-card h2 { text-align: center; margin-bottom: 30px; color: #333; }

/* ===== DASHBOARD PAGE ===== */
.dashboard-container { max-width: 1200px; margin: 40px auto; padding: 20px; }
.welcome-section { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 40px; border-radius: 8px; margin-bottom: 30px; }
.welcome-section h1 { margin: 0 0 10px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 30px; }
.stat-card { background: #fff; padding: 25px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.stat-card h3 { margin: 0 0 10px 0; color: #666; font-size: 14px; }
.stat-card .stat-value { font-size: 32px; font-weight: bold; color: #333; }
.status-badge { padding: 6px 12px; border-radius: 4px; font-size: 14px; font-weight: 600; display: inline-block; }
.status-badge.pending { background: #fff3cd; color: #856404; }
.status-badge.approved { background: #d4edda; color: #155724; }
.status-badge.rejected { background: #f8d7da; color: #721c24; }
.alert-box { padding: 20px; border-radius: 8px; margin-bottom: 20px; }
.alert-warning { background: #fff3cd; border-left: 4px solid #ffc107; color: #856404; }
.alert-danger { background: #f8d7da; border-left: 4px solid #dc3545; color: #721c24; }
.alert-success { background: #d4edda; border-left: 4px solid #28a745; color: #155724; }
.quick-actions { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.quick-actions h2 { margin-top: 0; }
.action-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-top: 20px; }
.action-btn { display: block; padding: 20px; text-align: center; background: #f8f9fa; border: 2px solid #dee2e6; border-radius: 8px; text-decoration: none; color: #333; transition: all 0.3s; }
.action-btn:hover { background: #007bff; color: white; border-color: #007bff; }
.action-btn.disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== PROFILE PAGE ===== */
.profile-container { max-width: 900px; margin: 40px auto; padding: 20px; }
.profile-card { background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); padding: 30px; margin-bottom: 20px; }
.profile-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.info-row { display: flex; margin-bottom: 15px; }
.info-label { font-weight: 600; width: 180px; color: #555; }
.info-value { flex: 1; color: #333; }

/* ===== FORM PAGE ===== */
.form-container { max-width: 800px; margin: 40px auto; padding: 20px; }
.form-card { background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); padding: 30px; }

/* ===== ADMIN PAGE ===== */
.admin-container { max-width: 1200px; margin: 40px auto; padding: 20px; }
.admin-card { background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); padding: 30px; }
.table-container { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; margin-top: 20px; }
th, td { padding: 12px; text-align: left; border-bottom: 1px solid #ddd; }
th { background: #f8f9fa; font-weight: 600; }
.active-status { color: #28a745; font-weight: 600; }
.inactive-status { color: #dc3545; font-weight: 600; }
