/*
 * OneSignal Manager - Corporate Style
 * Modern, clean corporate design with slate gray primary color
 * Cleaned and optimized version - Corporate form design
 * Last updated: 2025-01-23 - Compact form design with reduced border-radius
 */

/* Corporate Variables - Professional Color Palette */
:root {
    --primary-color: #2d3748;
    --primary-dark: #1a202c;
    --primary-light: #4a5568;
    --secondary-color: #718096;
    --accent-color: #4299e1;
    --success-color: #38a169;
    --warning-color: #d69e2e;
    --danger-color: #e53e3e;
    --info-color: #3182ce;
    
    --bg-primary: #f7fafc;
    --bg-secondary: #edf2f7;
    --bg-white: #ffffff;
    --bg-gray-50: #f9fafb;
    
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-muted: #a0aec0;
    --text-light: #f7fafc;
    
    --border-color: #e2e8f0;
    --border-hover-color: #b5bac2;
    --border-light: #f1f5f9;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    --border-radius: 2px;
    --border-radius-lg: 3px;
    --border-radius-full: 9999px;
}

body {
   font-family: 'Roboto', 'Open Sans', 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    
    font-weight: 600;
}

/* Typography - Labels and Titles */
.form-label,
label.form-label,
.card-title,
.modal-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
    margin-bottom:0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title {
    font-size: 1rem;
    color: var(--secondary-color);
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color:var(--border-light);
}

.section-title i {
    font-size: 1.125rem;
    color: var(--primary-color);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-label {
    font-size: 0.75rem;
}

.form-label .required {
    color: var(--danger-color);
    margin-left: 0.25rem;
    font-weight: 700;
}

.card-title {
    font-size: 1.125rem;
    margin: 0 0 0.5rem 0;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--primary-dark);
}

.navbar-nav .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
}

.dropdown-item {
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--bg-gray-50);
    color: var(--primary-color);
}

.dropdown-item.active {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Layout Components */
.profile-header {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.profile-avatar .avatar-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
}

.avatar-circle.credit {
    background: linear-gradient(135deg, var(--success-color), #059669);
}

.avatar-circle.settings {
    background: linear-gradient(135deg, var(--accent-color), #2563eb);
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.profile-email {
    color: var(--text-secondary);
    margin: 0;
}

.status-badge {
    background: var(--success-color);
    color: var(--text-light);
    padding: 0.375rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-badge.secure {
    background: var(--primary-color);
}

/* Cards */
.sidebar-card,
.page-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
}

 
.sidebar-card-header,
.page-card-header {
    padding: 1.5rem 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-card-body,
.page-card-body {
    padding: 1.5rem;
}

.page-card {
    padding: 1.5rem;
    height: 100%;
}

.page-card-header {
    padding: 0 0 1rem 0;
    margin-bottom: 1rem;
}

.page-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.card-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* Forms - Unified and Clean */
.profile-form .form-section,
.form-section {
    margin-bottom: 2.5rem;
}

 
.section-header {
    margin-bottom: 1rem;
    position: relative;
}

 

.section-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    animation: fadeInUp 0.3s ease-out;
}

/* Input Wrapper and Icon Positioning */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper.with-icon {
    position: relative;
}

/* Universal Form Controls - Consolidated */
.form-control,
input.form-control,
textarea.form-control,
select.form-control,
.form-select,
select.form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background-color: var(--bg-white);
    width: 100%;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: none;
}

/* Form controls with icons - add left padding */
.input-wrapper .form-control,
.form-control.with-icon,
.has-icon .form-control {
    padding-left: 2.5rem !important;
}

/* Select specific styles */
.form-select,
select.form-select,
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23334155' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

/* Select with icon wrapper */
.input-wrapper .form-select,
.input-wrapper select.form-select,
.input-wrapper select.form-control,
.has-icon .form-select,
.has-icon select.form-select,
.has-icon select.form-control {
    padding-left: 3rem !important;
}

/* Textarea specific styles */
textarea.form-control {
    min-height: 120px;
    resize: vertical;
    padding-top: 0.75rem;
    line-height: 1.5;
}

/* Form Control States */
.form-control:focus,
input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus,
.form-select:focus,
select.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(51, 65, 85, 0.1);
    outline: none;
    background-color: var(--bg-white);
}

.form-control:hover,
input.form-control:hover,
textarea.form-control:hover,
select.form-control:hover,
.form-select:hover,
select.form-select:hover {
    border-color: var(--border-hover-color);
}

.form-control::placeholder,
input.form-control::placeholder,
textarea.form-control::placeholder {
    color: var(--text-muted);
    font-weight: 400;
    font-style: italic;
}

/* Input Icon Positioning - Simplified and Unified */
.input-icon,
.input-wrapper .input-icon,
.input-wrapper > .input-icon,
div.input-icon,
i.input-icon {
    position: absolute;
    left: 1rem;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 1rem;
    z-index: 20;
    transition: all 0.2s ease;
    width: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon focus state */
.input-wrapper:focus-within .input-icon,
.input-wrapper:focus-within > .input-icon,
.input-wrapper:focus-within div.input-icon,
.input-wrapper:focus-within i.input-icon {
    color: var(--primary-color);
    left: 1rem;
    right: auto;
}

/* Right side icons for special cases */
.input-icon-right {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: auto;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
}

/* Textarea icon positioning */
textarea.form-control + .input-icon,
.input-wrapper textarea.form-control ~ .input-icon {
    top: 1rem;
    transform: translateY(0);
}

.input-wrapper:focus-within textarea.form-control ~ .input-icon {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Form Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row.single {
    grid-template-columns: 1fr;
}

.form-row.triple {
    grid-template-columns: 1fr 1fr 1fr;
}

/* Form Validation States */
.form-control.is-valid {
    border-color: var(--success-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310b981' d='m2.3 6.73.84-.84L4.9 7.64l3.24-3.24.84.84L4.9 9.32z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
}

.form-control.is-invalid {
    border-color: var(--danger-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.5 5.5 1 1m0-1-1 1'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
}

.valid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--success-color);
    font-weight: 500;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--danger-color);
    font-weight: 500;
}

/* Form Help Text */
.form-help {
    margin-top: 0.25rem; 
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-help i {
    color: var(--info-color);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Buttons - Bootstrap Override */
.btn,
button.btn,
a.btn,
input[type="submit"].btn,
input[type="button"].btn {
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(51, 65, 85, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 65, 85, 0.3);
    color: var(--text-light);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #52525b);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #52525b, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.3);
    color: var(--text-light);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669, var(--success-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    color: var(--text-light);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger-color), #dc2626);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #dc2626, var(--danger-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    color: var(--text-light);
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid var(--border-color) !important;
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--border-color);
    color: var(--text-primary);
}

.btn-outline-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--border-color);
}

.btn-outline-secondary:hover {
    background: var(--border-hover-color);
    color: var(--text-primary);
}

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    min-width: 100px;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
    min-width: 180px;
}

.btn-xl {
    padding: 1.375rem 3rem;
    font-size: 1.125rem;
    min-width: 220px;
}

/* Button Groups and Actions */
.btn-group {
    display: flex;
    gap: 0.5rem;
}

.btn-group .btn {
    flex: 1;
}

.btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-gray-50);
    border-radius: var(--border-radius-lg);
}

.form-actions {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.form-actions .btn {
    min-width: 150px;
}

.form-actions .btn-primary,
.form-actions .btn-success,
.form-actions .btn-warning {
    order: 2;
}

/* Back button - light theme, smaller size, left position */
.form-actions .btn-back,
.form-actions .btn-secondary:not(.btn-lg):not(.btn-xl) {
    order: 1;
    min-width: 120px;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    background: var(--bg-gray-50);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    box-shadow: none;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
}

.form-actions .btn-back:hover,
.form-actions .btn-secondary:not(.btn-lg):not(.btn-xl):hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--border-color);
    transform: none;
    box-shadow: var(--shadow-sm);
}

.form-actions .btn-outline-primary {
    order: 1;
}

/* Modal Footer Actions */
.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-light);
}

.modal-footer .btn {
    min-width: 120px;
}

.modal-footer .btn-secondary {
    order: 1;
    min-width: 100px;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    background: var(--bg-gray-50);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    box-shadow: none;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
}

.modal-footer .btn-secondary:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--border-color);
    transform: none;
    box-shadow: var(--shadow-sm);
}

.modal-footer .btn-primary,
.modal-footer .btn-success,
.modal-footer .btn-warning,
.modal-footer .btn-danger {
    order: 2;
}

/* Cache Buster - Updated: 2025-01-23 - Form actions and modal footer styling */

/* Debug and log display */
.debug-output,
.log-display {
    background: var(--bg-gray-50);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    max-height: 400px;
    overflow-y: auto;
}

.security-critical { 
    background-color: #f8d7da; 
}

.security-high { 
    background-color: #f8d7da; 
}

.security-medium { 
    background-color: #fff3cd; 
}

.security-low { 
    background-color: #d1ecf1; 
}

/* Cache Buster - Updated: 2025-01-23 - Light corporate footer, improved section titles, removed inline styles */

/* Input Group with Password Toggle */
.input-group {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
}

.input-group .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
    border-radius: var(--border-radius-lg);
}

/* Standard input groups (login, API key) - default padding */
.input-group .form-control {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Input groups with icons */
.input-group .input-wrapper .form-control,
.input-group .has-icon .form-control {
    padding-left: 3rem !important;
}

/* Input groups without password toggle */
.input-group:not(.password-group) .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* Password group specific */
.input-group.password-group .form-control {
    padding-right: 3.5rem;
}

/* Password group with icon */
.input-group.password-group .input-wrapper .form-control {
    padding-left: 3rem;
    padding-right: 3.5rem;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-secondary);
    text-align: center;
    white-space: nowrap;
    background-color: var(--bg-gray-50);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
}

 
/* Password Toggle Button - Input Group Style */
.password-toggle {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.password-toggle:hover {
    background: rgba(51, 65, 85, 0.05);
    color: var(--primary-color);
}

.password-toggle:focus {
    outline: none;
    background: rgba(51, 65, 85, 0.1);
    color: var(--primary-color);
    box-shadow: inset 0 0 0 1px var(--primary-color);
}

.password-toggle:active {
    background: rgba(51, 65, 85, 0.15);
    transform: scale(0.95);
}

/* Password Group Specific Styling */
.input-group.password-group {
    position: relative;
}

.input-group.password-group .input-wrapper {
    flex: 1;
    position: relative;
}

.input-group.password-group .form-control {
    padding-right: 3.5rem;
    border-radius: var(--border-radius-lg);
}

.input-group.password-group .input-icon {
    left: 1rem;
    z-index: 5;
}

.input-group.password-group .password-toggle {
    right: 0.25rem;
    width: 2.75rem;
    height: calc(100% - 0.5rem);
    top: 0.25rem;
    bottom: 0.25rem;
    border-radius: var(--border-radius);
}

/* Input Group Focus State */
.input-group:focus-within .form-control {
    border-color: var(--border-hover-color);
    box-shadow: 0 0 0 0.25rem rgba(51, 65, 85, 0.1);
}

.input-group:focus-within .password-toggle {
    color: var(--primary-color);
}

.input-group:focus-within .btn-outline-secondary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Standard Input Group Buttons (for API keys etc) */
.input-group .btn-outline-secondary {
    border-color: var(--border-color);
    color: var(--text-secondary);
    background: var(--bg-gray-50);
    transition: all 0.2s ease;
}

.input-group .btn-outline-secondary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.input-group .btn-outline-secondary:focus {
    box-shadow: 0 0 0 0.25rem rgba(51, 65, 85, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Input with Password Toggle Layout */
.input-wrapper.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper.password-input .form-control {
    padding-right: 3.5rem;
}

.input-wrapper.password-input .input-icon {
    left: 1rem;
}

.input-wrapper.password-input .password-toggle {
    right: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--border-radius);
}

/* Security Tips Components */
.security-tips {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

 
.tip-icon {
    width: 2rem;
    height: 2rem;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.tip-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.tip-icon.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

.tip-icon.info {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info-color);
}

.tip-content {
    min-width: 0;
}

.tip-content strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: -0.5rem;
}

.tip-content p,
.tip-content span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Security Cards */
.security-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.security-card.success {
    border-left: 4px solid var(--success-color);
}

.security-card.warning {
    border-left: 4px solid var(--warning-color);
}

.security-card.danger {
    border-left: 4px solid var(--danger-color);
}

.security-card.info {
    border-left: 4px solid var(--info-color);
}

.security-card:hover {
    box-shadow: var(--shadow-md);
}

.security-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.security-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.security-card.success .security-card-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.security-card.warning .security-card-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.security-card.danger .security-card-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

.security-card.info .security-card-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info-color);
}

.security-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.security-card-content {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.strength-bars {
    display: flex;
    gap: 0.25rem;
    flex: 1;
}

.strength-bar {
    height: 4px;
    border-radius: 2px;
    background: var(--border-light);
    flex: 1;
    transition: all 0.3s ease;
}

.strength-bar.filled {
    background: var(--success-color);
}

.strength-bar.filled.weak {
    background: var(--danger-color);
}

.strength-bar.filled.medium {
    background: var(--warning-color);
}

.strength-bar.filled.strong {
    background: var(--success-color);
}

.strength-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strength-text.weak {
    color: var(--danger-color);
}

.strength-text.medium {
    color: var(--warning-color);
}

.strength-text.strong {
    color: var(--success-color);
}

/* Password Match Indicator */
.password-match-indicator {
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.password-match-indicator.show {
    display: flex;
}

.password-match-indicator.match {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.password-match-indicator.no-match {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

.password-match-indicator i {
    font-size: 0.875rem;
}

/* Account Sidebar Navigation */
.account-sidebar .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.account-sidebar .nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-white);
    text-decoration: none;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.account-sidebar .nav-item:hover {
    background: var(--bg-gray-50);
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

.account-sidebar .nav-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.account-sidebar .nav-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--bg-gray-50);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.account-sidebar .nav-item:hover .nav-icon {
    background: rgba(51, 65, 85, 0.1);
    color: var(--primary-color);
}

.account-sidebar .nav-item.active .nav-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.account-sidebar .nav-content {
    flex: 1;
    min-width: 0;
}

.account-sidebar .nav-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
    line-height: 1.3;
}

.account-sidebar .nav-subtitle {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    line-height: 1.3;
}

.account-sidebar .nav-item.active .nav-subtitle {
    opacity: 0.9;
}

.account-sidebar .nav-arrow {
    font-size: 0.75rem;
    opacity: 0.5;
    transition: all 0.2s ease;
}

.account-sidebar .nav-item:hover .nav-arrow {
    opacity: 1;
    transform: translateX(2px);
}

.account-sidebar .nav-item.active .nav-arrow {
    opacity: 1;
}

/* Cache Buster - Updated: 2025-01-23 - Account sidebar navigation styles added */

/* Account Management Styles */
.account-management-wrapper {
    background: var(--bg-primary);
    min-height: 100vh;
    padding: 2rem 1rem;
}

.profile-header {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.profile-avatar .avatar-circle {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.profile-email {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.status-badge {
    background: var(--success-color);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.status-badge.active {
    background: var(--success-color);
}

.status-badge i {
    font-size: 0.5rem;
}

.profile-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.profile-card-header {
    background: var(--bg-gray-50);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-card-header .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
}

.profile-card-header .card-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.profile-card-body {
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.section-header {
    margin-bottom: 1.5rem;
}

.page-section-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    display: flex;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    color: var(--text-muted);
    z-index: 2;
    pointer-events: none;
}

.input-wrapper .form-control {
    padding-left: 2.5rem;
    transition: all 0.2s ease;
}

.input-wrapper.focused .input-icon {
    color: var(--primary-color);
}

.input-wrapper .form-control.validation-error {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 0.2rem rgba(239, 68, 68, 0.25);
}

.input-wrapper .form-control.validation-success {
    border-color: var(--success-color);
    box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.25);
}

.input-wrapper .form-control.validation-default {
    border-color: var(--border-color);
    box-shadow: none;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    margin-top: 2rem;
}

.sidebar-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 1rem;
}

.sidebar-card-header {
    background: var(--bg-gray-50);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-title {
    font-size: 1rem;
    margin: 0;
    padding: 0.5rem 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-card-body {
    padding: 1.25rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-gray-50);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
}

.stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.stat-icon.primary {
    background: rgba(51, 65, 85, 0.1);
    color: var(--primary-color);
}

.stat-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.stat-icon.info {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info-color);
}

.stat-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.stat-info {
    flex: 1;
    min-width: 0;
}

.stat-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 0.125rem;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
    text-decoration: none;
}

.action-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.action-btn.info {
    background: linear-gradient(135deg, var(--info-color), #2563eb);
}

.action-btn.success {
    background: linear-gradient(135deg, var(--success-color), #059669);
}

.action-btn.warning {
    background: linear-gradient(135deg, var(--warning-color), #d97706);
}

.action-btn i {
    font-size: 1.25rem;
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.175rem;
}

.status-item .status-icon {
    width: 2rem;
    height: 2rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.status-item .status-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.status-item .status-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.status-content {
    flex: 1;
    min-width: 0;
}

.status-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Settings Page Specific Styles */
.info-card {
    background: var(--bg-gray-50);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.info-card-header {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card-body {
    padding: 1rem;
}

.info-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    counter-reset: step-counter;
}

.info-steps li {
    counter-increment: step-counter;
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.info-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.system-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-gray-50);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
}

.info-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-value {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 600;
}

.settings-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.setting-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-gray-50);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
}

.setting-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--border-radius);
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.setting-content {
    flex: 1;
    min-width: 0;
}

.setting-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.125rem;
}

.setting-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.setting-toggle {
    flex-shrink: 0;
}

.support-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-gray-50);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.support-btn:hover {
    background: var(--bg-white);
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

.support-btn i {
    width: 1.25rem;
    text-align: center;
    color: var(--primary-color);
}

/* Cache Buster - Updated: 2025-01-23 - Settings page styles added */

/* Input Toggle Button (Eye Icon for Password) */
.input-toggle-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
    z-index: 10;
}

.input-toggle-btn:hover {
    color: var(--primary-color);
    background-color: var(--bg-gray-50);
}

.input-toggle-btn:focus {
    outline: none;
    color: var(--primary-color);
    background-color: var(--bg-gray-50);
}

/* OneSignal Account Cards */
.account-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
}

.account-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.account-card-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-light);
    background: linear-gradient(135deg, var(--bg-gray-50) 0%, var(--bg-white) 100%);
}

.account-name {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.account-actions .btn-group {
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius);
}

.account-actions .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0;
}

.account-actions .btn:first-child {
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

.account-actions .btn:last-child {
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.account-card-body {
    padding: 1.25rem;
}

.account-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.account-info-item {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.75rem;
}

.account-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
}

.info-value {
    color: var(--text-primary);
    font-size: 0.875rem;
}

.info-value code {
    font-size: 0.8rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    word-break: break-all;
}

.empty-state {
    padding: 3rem 1rem;
}

.empty-icon {
    opacity: 0.5;
}

/* Accounts Table Styles */
#accountsTable {
    table-layout: fixed;
    width: 100%;
}

#accountsTable th:first-child {
    width: auto; /* Hesap Adı - kalan alanı kullan */
}

#accountsTable th:nth-child(2) {
    width: 200px; /* Organization ID */
}

#accountsTable th:nth-child(3) {
    width: 80px; /* Status */
}

#accountsTable th:nth-child(4) {
    width: 120px; /* Eklenme */
}

#accountsTable th:nth-child(5) {
    width: 120px; /* İşlemler - butonlar için yeterli alan */
}

#accountsTable td {
    overflow: hidden;
    text-overflow: ellipsis;
}

#accountsTable .btn-group {
    display: flex !important;
    gap: 2px;
    justify-content: center;
}

#accountsTable .btn-group .btn {
    padding: 0.375rem 0.5rem !important;
    font-size: 0.875rem !important;
    min-width: 32px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.table-responsive {
    overflow-x: auto;
}

@media (max-width: 768px) {
    #accountsTable th:nth-child(2) {
        width: 150px;
    }
    
    #accountsTable th:nth-child(4) {
        width: 100px;
    }
}

/* Footer Styles - Corporate Professional */
.corporate-footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #e2e8f0;
    margin-top: auto;
    border-top: 1px solid #4a5568;
}

.footer-main {
    padding: 3rem 0 2rem;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
}

.footer-brand {
    margin-bottom: 2rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f7fafc;
}

.brand-logo i {
    margin-right: 0.75rem;
    color: #63b3ed;
    font-size: 1.75rem;
}

.brand-description {
    color: #cbd5e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.brand-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.brand-stat-item {
    display: flex;
    align-items: center;
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-left: 3px solid #4299e1;
    padding-left: 1rem;
    transition: all 0.3s ease;
}

.brand-stat-item:hover {
    color: #f7fafc;
    transform: translateX(5px);
    border-left-color: #63b3ed;
}

.brand-stat-item i {
    color: #4299e1;
    margin-right: 0.75rem;
    width: 18px;
    font-size: 1rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    color: #f7fafc;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #f7fafc;
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 0.5rem;
    width: 16px;
    color: #4299e1;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding: 1.5rem 0;
    background: linear-gradient(to right, rgba(26, 32, 44, 0.8) 0%, rgba(45, 55, 72, 0.8) 100%);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #a0aec0;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(74, 85, 104, 0.4);
    color: #cbd5e0;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 85, 104, 0.6);
}

.social-link:hover {
    background: #4299e1;
    color: #f7fafc;
    transform: translateY(-2px);
    border-color: #4299e1;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.development-info {
    background: linear-gradient(to right, rgba(26, 32, 44, 0.9) 0%, rgba(45, 55, 72, 0.9) 100%);
    padding: 1rem 0;
    border-top: 1px solid #2d3748;
}

.dev-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: #a0aec0;
}

.dev-badge {
    background: rgba(74, 85, 104, 0.4);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    border: 1px solid rgba(74, 85, 104, 0.6);
    color: #cbd5e0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-main {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .brand-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .dev-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .brand-logo {
        font-size: 1.25rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .brand-stats {
        flex-direction: column;
    }
}
