/* ServerTrack Admin Styles */
.st-wrapper { max-width: 1000px; margin: 40px auto; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: #3c434a; }
.st-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; }
.st-logo { font-size: 24px; font-weight: 700; color: #1d2327; display: flex; align-items: center; gap: 12px; }
.st-logo span { color: #1d2327; }
.st-status-badge { background: #d1fae5; color: #065f46; padding: 4px 12px; border-radius: 20px; font-size: 13px; font-weight: 600; }
.st-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 25px; }
.st-card { background: #fff; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); border: 1px solid #dcdcde; padding: 30px; }
.st-card h2 { margin-top: 0; margin-bottom: 20px; font-size: 18px; color: #1d2327; border-bottom: 1px solid #f0f0f1; padding-bottom: 15px; }
.st-form-group { margin-bottom: 25px; }
.st-label { display: block; font-weight: 600; margin-bottom: 8px; color: #2c3338; }
.st-input { width: 100%; padding: 10px 12px; border: 1px solid #8c8f94; border-radius: 4px; font-size: 14px; box-sizing: border-box; }
.st-input:focus { border-color: #013D29; box-shadow: 0 0 0 1px #013D29; outline: none; }
.st-select { width: 100%; max-width: 100%; padding: 8px 12px; border: 1px solid #8c8f94; border-radius: 4px; }
.st-help { margin-top: 8px; font-size: 13px; color: #646970; line-height: 1.5; }
.st-alert { background: #f0f6fc; border-left: 4px solid #013D29; padding: 15px; margin-top: 10px; border-radius: 4px; font-size: 13px; }
.st-btn-primary { background: #013D29; color: #fff; border: none; padding: 12px 24px; border-radius: 4px; cursor: pointer; font-size: 15px; font-weight: 500; transition: background 0.2s; }
.st-btn-primary:hover { background: #6a194d; }
.st-sidebar-link { display: flex; align-items: center; padding: 12px 0; border-bottom: 1px solid #f0f0f1; text-decoration: none; color: #2271b1; font-weight: 500; }
.st-sidebar-link:last-child { border-bottom: none; }
.st-sidebar-link:hover { color: #135e96; }
/* Repeater */
.st-repeater { display: grid; grid-template-columns: 2fr 1fr auto; gap: 10px; margin-bottom: 10px; align-items: center; }
.st-removebutton { padding: 5px 10px; background: #dc3232; color: white; border: none; cursor: pointer; border-radius: 3px; }
.st-btn-add { margin-top: 10px; padding: 8px 15px; background: #013D29; color: white; border: none; cursor: pointer; border-radius: 3px; }
/* Utilities */
.st-w-100 { width: 100%; max-width: 100% !important; }
.st-m-30 { margin-top: 30px; }
.st-mt-10 { margin-top: 10px; }
.st-mr-8 { margin-right: 8px; }
.st-mb-15 { margin-bottom: 15px; }
.st-subdomain { margin: 5px 0 10px; }
.st-subdomain-link { text-decoration: none; color: #013D29; font-weight: 600; }
@media (max-width: 782px) { .st-grid { grid-template-columns: 1fr; } }
