/* Ghostbot Admin Panel - Custom Styles */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --background-color: #1e1e2f;
    --text-color: #ffffff;
    --card-background: #2a2a3d;
    --border-color: #3a3a4d;
}
.title, .subtitle {
    color: #2a2a3d !important;
}

.my-heading-text {
    color: #ffffff !important;
}

/* Hero gradient */
.hero.is-dark {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Feature cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Pulse animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Navbar */
.navbar-brand .title {
    color: white;
    margin-bottom: 0;
}

/* Gradient button */
.is-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

/* Editor styles */
.sidebar {
    height: calc(100vh - 52px);
    overflow-y: auto;
    background: #f5f5f5;
    border-right: 1px solid #dbdbdb;
}

.file-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.file-item:hover {
    background: #e8e8e8;
}

.file-item.is-active {
    background: #667eea;
    color: white;
    border-left-color: #764ba2;
}

.editor-container {
    height: calc(100vh - 52px);
}

.CodeMirror {
    height: calc(100vh - 200px);
    font-size: 14px;
}

.save-button {
    position: sticky;
    top: 60px;
    z-index: 10;
}

/* Settings page */
.settings-section {
    margin-bottom: 2rem;
}

.settings-card {
    border-left: 4px solid #667eea;
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notification.animated {
    animation: slideDown 0.3s ease;
}
