/* Modern Server Settings - htop-inspired Design */

:root {
    --bg-dark: #0a0e14;
    --bg-darker: #070a0f;
    --bg-card: #13171f;
    --bg-card-hover: #1a1f2b;
    --border-color: #1e2533;
    --text-primary: #e0e0e0;
    --text-secondary: #9ca3af;
    --text-dim: #6b7280;
    --accent-primary: #00d9ff;
    --accent-secondary: #7c3aed;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
    background: var(--bg-dark);
    color: var(--text-primary);
    font-size: 13px;
    line-height: 1.5;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid var(--accent-primary);
    margin-bottom: 20px;
}

header h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.breadcrumb {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.breadcrumb span {
    cursor: pointer;
    transition: color 0.2s;
}

.breadcrumb span:hover {
    color: var(--accent-primary);
}

.breadcrumb .active {
    color: var(--accent-primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-nav-links .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s;
    cursor: pointer;
}

.admin-nav-links .nav-link:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.admin-nav-links .nav-link.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-info span {
    color: var(--text-secondary);
}

/* Tabs */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
}

.tab-btn {
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

.tab-btn.active {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.3s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Overview Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.card-body {
    padding: 20px;
}

/* Stats */
.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 12px;
}

.stat-value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 13px;
}

.stat-value.highlight {
    color: var(--accent-primary);
    font-size: 18px;
}

.stat-value.status-online {
    color: var(--success);
}

/* Memory Visual */
.memory-visual {
    margin-bottom: 15px;
}

.memory-bar {
    width: 100%;
    height: 30px;
    background: var(--bg-darker);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.memory-used {
    height: 100%;
    background: linear-gradient(90deg, var(--success), var(--accent-primary));
    transition: width 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 12px;
}

.memory-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 11px;
    color: var(--text-dim);
}

/* Chart Container */
.chart-container {
    margin-top: 15px;
    height: 100px;
    background: var(--bg-darker);
    border-radius: 4px;
    padding: 10px;
}

/* Process Table */
.table-container {
    overflow-x: auto;
    max-height: 600px;
    overflow-y: auto;
}

.process-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.process-table thead {
    position: sticky;
    top: 0;
    background: var(--bg-darker);
    z-index: 10;
}

.process-table th {
    padding: 12px 10px;
    text-align: left;
    color: var(--accent-primary);
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
    white-space: nowrap;
}

.process-table td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.process-table tbody tr {
    transition: background 0.2s;
}

.process-table tbody tr:hover {
    background: var(--bg-card-hover);
}

.process-table .cpu-high {
    color: var(--error);
    font-weight: 600;
}

.process-table .cpu-medium {
    color: var(--warning);
}

.process-table .cpu-low {
    color: var(--success);
}

/* Log Container */
.log-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--bg-darker);
    border-radius: 4px;
}

.log-stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.log-stat-label {
    color: var(--text-secondary);
    font-size: 12px;
}

.log-stat-value {
    font-weight: 700;
    font-size: 16px;
}

.log-stat-value.error {
    color: var(--error);
}

.log-stat-value.warning {
    color: var(--warning);
}

.log-stat-value.info {
    color: var(--info);
}

.log-container {
    background: var(--bg-darker);
    border-radius: 4px;
    padding: 15px;
    max-height: 500px;
    overflow-y: auto;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 11px;
    line-height: 1.6;
}

.log-entry {
    margin-bottom: 8px;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.log-entry:hover {
    background: rgba(255, 255, 255, 0.03);
}

.log-entry.error {
    border-left: 3px solid var(--error);
    background: rgba(239, 68, 68, 0.1);
}

.log-entry.warn {
    border-left: 3px solid var(--warning);
    background: rgba(245, 158, 11, 0.1);
}

.log-entry.info {
    border-left: 3px solid var(--info);
}

.log-timestamp {
    color: var(--text-dim);
    margin-right: 10px;
}

.log-level {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 10px;
    margin-right: 10px;
}

.log-level.error {
    background: var(--error);
    color: white;
}

.log-level.warn {
    background: var(--warning);
    color: white;
}

.log-level.info {
    background: var(--info);
    color: white;
}

/* Network List */
#network-list {
    display: grid;
    gap: 15px;
}

.network-interface {
    background: var(--bg-darker);
    padding: 15px;
    border-radius: 4px;
    border-left: 3px solid var(--accent-primary);
}

.network-interface h4 {
    color: var(--accent-primary);
    margin-bottom: 10px;
}

/* Settings Section */
.setting-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.setting-section:last-child {
    border-bottom: none;
}

.setting-section h4 {
    color: var(--accent-primary);
    margin-bottom: 15px;
    font-size: 14px;
}

.setting-section label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.setting-section label:hover {
    color: var(--text-primary);
}

.help-text {
    color: var(--text-dim);
    font-size: 11px;
    margin-top: 8px;
}

/* Buttons */
.btn, .btn-icon {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 12px;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: inherit;
}

.btn:hover, .btn-icon:hover {
    background: var(--accent-primary);
    color: var(--bg-dark);
    border-color: var(--accent-primary);
}

.btn-danger {
    border-color: var(--error);
    color: var(--error);
}

.btn-danger:hover {
    background: var(--error);
    color: white;
}

.btn-icon {
    padding: 8px 12px;
}

/* Inputs */
input[type="text"],
input[type="search"],
select {
    padding: 8px 12px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 4px;
    font-size: 12px;
    font-family: inherit;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="search"]:focus,
select:focus {
    outline: none;
    border-color: var(--accent-primary);
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Loading */
.loading {
    text-align: center;
    padding: 40px;
    color: var(--text-dim);
    font-style: italic;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .card-actions {
        width: 100%;
    }

    .tabs {
        flex-wrap: wrap;
    }

    .process-table {
        font-size: 10px;
    }

    .process-table th,
    .process-table td {
        padding: 6px;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pulsing {
    animation: pulse 2s ease-in-out infinite;
}

/* Kill Button in Process Table */
.btn-kill {
    padding: 4px 8px;
    font-size: 10px;
    background: transparent;
    border: 1px solid var(--error);
    color: var(--error);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-kill:hover {
    background: var(--error);
    color: white;
}

/* CPU/Memory Bars in Process Table */
.usage-bar {
    width: 60px;
    height: 6px;
    background: var(--bg-darker);
    border-radius: 3px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.usage-fill {
    height: 100%;
    transition: width 0.3s;
}

.usage-fill.low {
    background: var(--success);
}

.usage-fill.medium {
    background: var(--warning);
}

.usage-fill.high {
    background: var(--error);
}

/* ============================================
   GIT & DEPLOYMENT STYLES
   ============================================ */

.git-info-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.branch-selection {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.branch-selection label {
    color: var(--text-secondary);
    min-width: 120px;
}

.branch-dropdown {
    flex: 1;
    min-width: 200px;
    padding: 10px 15px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.branch-dropdown:hover {
    border-color: var(--accent-primary);
}

.branch-dropdown:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

.branch-dropdown option {
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 10px;
}

.btn-secondary {
    padding: 10px 20px;
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.deploy-section {
    margin-bottom: 20px;
}

.btn-deploy {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.btn-deploy:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.5);
}

.btn-deploy:active:not(:disabled) {
    transform: translateY(0);
}

.btn-deploy:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(135deg, #555 0%, #666 100%);
    box-shadow: none;
}

.btn-deploy.deploying {
    background: linear-gradient(135deg, var(--warning) 0%, var(--error) 100%);
    animation: deployPulse 2s ease-in-out infinite;
}

@keyframes deployPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
    }
    50% {
        box-shadow: 0 6px 25px rgba(239, 68, 68, 0.7);
    }
}

.deploy-icon {
    font-size: 32px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.btn-deploy.deploying .deploy-icon {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.deploy-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.deploy-text strong {
    font-size: 20px;
    letter-spacing: 2px;
}

.deploy-text small {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.9;
}

.deploy-log {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.deploy-log h5 {
    color: var(--accent-primary);
    margin-bottom: 10px;
    font-size: 14px;
}

.log-content {
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 15px;
    max-height: 300px;
    overflow-y: auto;
    font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.log-content .log-line {
    margin: 4px 0;
}

.log-content .log-line.success {
    color: var(--success);
}

.log-content .log-line.error {
    color: var(--error);
}

.log-content .log-line.warning {
    color: var(--warning);
}

.log-content .log-line.info {
    color: var(--info);
}

.help-text {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 10px;
    line-height: 1.4;
}

/* Mobile Responsive for Deployment */
@media (max-width: 768px) {
    .branch-selection {
        flex-direction: column;
        align-items: stretch;
    }

    .branch-selection label {
        min-width: auto;
    }

    .branch-dropdown {
        width: 100%;
    }

    .btn-deploy {
        padding: 15px;
        font-size: 14px;
    }

    .deploy-icon {
        font-size: 24px;
    }

    .deploy-text strong {
        font-size: 16px;
    }

    .deploy-text small {
        font-size: 10px;
    }
}

/* Deploy Modal */
.deploy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: modalFadeIn 0.3s ease-out;
}

.deploy-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.deploy-modal-content {
    background: var(--bg-card);
    border: 2px solid var(--accent-primary);
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: auto;
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-100px) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.deploy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 10px 10px 0 0;
}

.deploy-modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.deploy-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.deploy-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.deploy-modal-body {
    padding: 25px;
}

/* Deploy Info */
.deploy-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.deploy-info-item {
    display: flex;
    gap: 10px;
}

.deploy-info-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.deploy-info-value {
    color: var(--accent-primary);
    font-weight: 700;
    font-family: monospace;
}

/* Deploy Steps */
.deploy-steps {
    margin-bottom: 25px;
}

.deploy-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s;
}

.deploy-step.pending {
    opacity: 0.5;
}

.deploy-step.active {
    border-color: var(--accent-primary);
    background: rgba(0, 217, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.deploy-step.success {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.05);
}

.deploy-step.error {
    border-color: var(--error);
    background: rgba(239, 68, 68, 0.05);
}

.deploy-step-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.deploy-loader {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: deployLoaderSpin 0.8s linear infinite;
    display: none;
}

.deploy-step.active .deploy-loader {
    display: block;
}

@keyframes deployLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}

.deploy-step-content {
    flex: 1;
}

.deploy-step-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
}

.deploy-step-status {
    font-size: 12px;
    color: var(--text-secondary);
}

.deploy-step.active .deploy-step-status {
    color: var(--accent-primary);
}

.deploy-step.success .deploy-step-status {
    color: var(--success);
}

.deploy-step.error .deploy-step-status {
    color: var(--error);
}

/* Deploy Terminal */
.deploy-terminal {
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-darker);
}

.deploy-terminal-header {
    padding: 10px 15px;
    background: rgba(0, 217, 255, 0.1);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 12px;
}

.deploy-terminal-body {
    padding: 15px;
    max-height: 200px;
    overflow-y: auto;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 12px;
}

.terminal-line {
    margin-bottom: 5px;
    color: var(--text-primary);
    white-space: pre-wrap;
    word-break: break-word;
}

.terminal-line.info {
    color: var(--info);
}

.terminal-line.success {
    color: var(--success);
}

.terminal-line.error {
    color: var(--error);
}

.terminal-line.warning {
    color: var(--warning);
}

/* Deploy Result */
.deploy-result {
    padding: 20px;
    text-align: center;
    background: var(--bg-darker);
    border-radius: 8px;
    margin-bottom: 20px;
}

.deploy-result-icon {
    font-size: 64px;
    margin-bottom: 15px;
    animation: resultPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes resultPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.deploy-result.success .deploy-result-icon::before {
    content: '✅';
}

.deploy-result.error .deploy-result-icon::before {
    content: '❌';
}

.deploy-result-message {
    font-size: 16px;
    font-weight: 600;
}

.deploy-result.success .deploy-result-message {
    color: var(--success);
}

.deploy-result.error .deploy-result-message {
    color: var(--error);
}

/* Deploy Modal Footer */
.deploy-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px 25px;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 10px 10px;
}

.deploy-modal-footer .btn {
    min-width: 120px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.5);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.deploy-step.active {
    animation: pulse 2s infinite;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .deploy-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .deploy-info {
        grid-template-columns: 1fr;
    }

    .deploy-modal-header h2 {
        font-size: 20px;
    }

    .deploy-steps {
        font-size: 13px;
    }

    .deploy-step-icon {
        width: 30px;
        height: 30px;
    }

    .deploy-loader {
        width: 24px;
        height: 24px;
    }
}
