:root {
    --accent-color: #007acc;
    --accent-light: #569cd6;
    --accent-dark: #005a9e;
    --accent-bg: rgba(0, 122, 204, 0.1);
    --param-name-color: #9cdcfe;
    --param-type-color: #4ec9b0;
    --button-bg: #005a9e;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #d4d4d4;
    background: #1e1e1e;
}

.header {
    background: #2d2d30;
    color: #cccccc;
    padding: 1rem 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.header h1 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--accent-light);
}

.header p {
    margin: 0;
    font-size: 0.9rem;
    color: #a0a0a0;
}

.header a {
    color: var(--accent-light);
    text-decoration: none;
}

.header a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.theme-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.theme-selector select {
    background: #3c3c3c;
    color: #cccccc;
    border: 1px solid var(--accent-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
}

.theme-selector select:focus {
    outline: none;
    border-color: var(--accent-light);
}

.container {
    display: flex;
    height: calc(100vh - 60px);
}

.sidebar {
    width: 280px;
    background: #252526;
    border-right: 1px solid #3e3e3e;
    overflow-y: auto;
    height: 100%;
}

.sidebar::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-track {
    background: #1e1e1e;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #3e3e3e;
    border-radius: 4px;
}

.search-container {
    padding: 1rem;
    background: #2d2d30;
    border-bottom: 1px solid #3e3e3e;
}

.search-box {
    width: 100%;
    padding: 0.5rem;
    background: #1e1e1e;
    border: 1px solid #3e3e3e;
    color: #cccccc;
    border-radius: 4px;
    font-size: 14px;
}

.search-box:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #2d2d30;
    box-shadow: 0 0 0 2px var(--accent-bg);
}

.search-box:disabled {
    background: #1a1a1a;
    color: #606060;
    cursor: not-allowed;
    opacity: 0.6;
}

.sidebar h3 {
    color: var(--accent-light);
    margin: 0.5rem 0.5rem 0;
    padding: 0.75rem 1rem 0.5rem;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--accent-bg);
    border-left: 3px solid var(--accent-color);
    border-radius: 4px;
    transition: all 0.2s;
}

.sidebar h3:hover {
    background: var(--accent-color);
    color: white;
    padding-left: 1.2rem;
}

.sidebar h3::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.2s;
}

.sidebar h3.collapsed::after {
    transform: rotate(-90deg);
}

.sidebar .message-list {
    transition: max-height 0.3s ease-out;
    overflow: hidden;
    max-height: 2000px;
}

.sidebar .message-list.collapsed {
    max-height: 0;
}

.sidebar ul {
    list-style: none;
    padding: 0.5rem 0;
}

.sidebar a {
    display: block;
    padding: 0.4rem 1rem 0.4rem 1.5rem;
    color: #cccccc;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.1s;
    border-left: 3px solid transparent;
}

.sidebar a:hover {
    background: #2d2d30;
    color: #ffffff;
    border-left-color: var(--accent-color);
}

.sidebar a.active {
    background: var(--accent-bg);
    color: #ffffff;
    border-left-color: var(--accent-color);
}

.main {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    background: #1e1e1e;
}

.main::-webkit-scrollbar {
    width: 10px;
}

.main::-webkit-scrollbar-track {
    background: #1e1e1e;
}

.main::-webkit-scrollbar-thumb {
    background: #3e3e3e;
    border-radius: 5px;
}

.message {
    margin-bottom: 1.5rem;
}

.message a, .protocol-documentation a {
    color: var(--accent-light);
    text-decoration: none;
    border-bottom: 1px dotted var(--accent-light);
    transition: color 0.2s;
}

.message a:hover, .protocol-documentation a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.message h3 {
    color: #ffffff;
    border-bottom: 1px solid #3e3e3e;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.message-key {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    background: var(--accent-color);
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-weight: 600;
}

.description {
    color: #cccccc;
    margin: 1rem 0;
    line-height: 1.6;
}

.format {
    margin: 1.5rem 0;
}

.format strong {
    color: #808080;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

.format pre {
    background: #2d2d30;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    border: 1px solid #3e3e3e;
}

.format pre code {
    color: #d4d4d4;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
    background: transparent;
    padding: 0;
}

code {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    background: #2d2d30;
    color: var(--param-name-color);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    font-size: 0.9em;
}

.direction {
    color: #808080;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.code-snippets {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #3e3e3e;
}

.code-snippets h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.protocol-documentation {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #252526;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.protocol-documentation h4 {
    color: var(--accent-light);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.protocol-documentation blockquote {
    margin: 0;
    padding: 0;
}

.protocol-documentation pre {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.protocol-documentation cite {
    display: block;
    margin-top: 1rem;
    color: #808080;
    font-style: italic;
    font-size: 0.9rem;
}

.error-page {
    text-align: center;
    padding: 4rem 2rem;
    color: #cccccc;
}

.error-page h2 {
    color: #f48771;
    margin-bottom: 1rem;
}

.parameters {
    margin: 1.5rem 0;
}

.parameters h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.param-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.param-table thead {
    border-bottom: 2px solid #3e3e3e;
}

.param-table th {
    padding: 0.5rem 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #808080;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.param-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #2d2d30;
    vertical-align: top;
}

.param-table tbody tr:last-child td {
    border-bottom: none;
}

.param-name {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    color: var(--param-name-color);
    font-weight: 600;
}

.param-type {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    color: var(--param-type-color);
    opacity: 0.9;
    font-size: 13px;
}

.param-desc {
    color: #cccccc;
    line-height: 1.5;
}

.notes {
    background: #2d2d30;
    border-left: 3px solid var(--accent-color);
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.notes h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.notes p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.footer {
    background: #2d2d30;
    color: #808080;
    padding: 1rem 1.5rem;
    border-top: 2px solid var(--accent-color);
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    margin: 0;
}

.footer a {
    color: var(--accent-light);
    text-decoration: none;
}

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

body[data-theme="red"] {
    --accent-color: #cc0000;
    --accent-light: #ff6666;
    --accent-dark: #ff9999;
    --accent-bg: rgba(204, 0, 0, 0.1);
    --param-name-color: #ffaaaa;
    --param-type-color: #ff8888;
    --button-bg: #990000;
}

body[data-theme="green"] {
    --accent-color: #00cc00;
    --accent-light: #66ff66;
    --accent-dark: #99ff99;
    --accent-bg: rgba(0, 204, 0, 0.1);
    --param-name-color: #aaffaa;
    --param-type-color: #88ff88;
    --button-bg: #009900;
}

body[data-theme="purple"] {
    --accent-color: #9900cc;
    --accent-light: #cc66ff;
    --accent-dark: #dd99ff;
    --accent-bg: rgba(153, 0, 204, 0.1);
    --param-name-color: #ddaaff;
    --param-type-color: #cc88ff;
    --button-bg: #660099;
}

body[data-theme="yellow"] {
    --accent-color: #ccaa00;
    --accent-light: #ffdd33;
    --accent-dark: #ffee88;
    --accent-bg: rgba(204, 170, 0, 0.1);
    --param-name-color: #ffee88;
    --param-type-color: #ffdd66;
    --button-bg: #998800;
}

body[data-theme="orange"] {
    --accent-color: #ff6600;
    --accent-light: #ff9933;
    --accent-dark: #ffbb66;
    --accent-bg: rgba(255, 102, 0, 0.1);
    --param-name-color: #ffcc99;
    --param-type-color: #ffaa77;
    --button-bg: #cc5200;
}

.code-block {
    background: #252526;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    margin: 2rem 0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.code-block h4 {
    background: var(--accent-bg);
    color: var(--accent-light);
    margin: 0;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid #3e3e3e;
}

.code-block pre {
    margin: 0;
    padding: 1rem;
    overflow-x: auto;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    color: #d4d4d4;
    background: #1e1e1e;
}

.format-display {
    background: #1e1e1e;
    border: 1px solid var(--accent-dark);
    border-left: 3px solid var(--accent-color);
    padding: 1rem;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    color: #d7ba7d;
    border-radius: 4px;
    margin: 1rem 0;
    overflow-x: auto;
}

.parameter-table th {
    background: var(--accent-color);
    color: #ffffff;
    padding: 0.5rem;
    text-align: left;
    font-weight: 500;
}

.code-toggle {
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.code-toggle:hover {
    background: var(--accent-color) !important;
    color: white !important;
}

.toggle-icon {
    display: inline-block;
    transition: transform 0.2s;
    font-size: 0.8em;
    margin-right: 0.5rem;
}

.code-content {
    transition: max-height 0.3s ease-out;
}

.header-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.discord-login-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
    padding: 0.3rem 0.6rem !important;
    background-color: var(--button-bg) !important;
    color: white !important;
    border: 1px solid var(--accent-color) !important;
    border-radius: 6px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    white-space: nowrap !important;
    transition: all 0.2s !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
    line-height: 1 !important;
}

.discord-login-button:hover {
    background-color: var(--accent-color) !important;
    border-color: var(--button-bg) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

.discord-login-button .discord-logo {
    height: 12px !important;
    width: auto !important;
    vertical-align: middle !important;
}

button.discord-login-button-large {
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--button-bg);
    color: white;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    transition: all 0.2s;
    font-family: inherit;
    line-height: 1;
}

button.discord-login-button-large:hover {
    background-color: var(--accent-color);
    border-color: var(--button-bg);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

button.discord-login-button-large .discord-logo-large {
    height: 18px;
    width: auto;
    filter: brightness(0) invert(1);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    transition: transform 0.2s;
    object-fit: cover;
}

.user-avatar:hover {
    transform: scale(1.1);
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.user-name {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.logout-btn {
    appearance: none;
    padding: 0.25rem 0.5rem;
    background-color: var(--button-bg);
    color: white;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.logout-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-1px);
}

.guest-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
    padding: 2rem;
    text-align: center;
}

.guest-prompt h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.guest-prompt p {
    color: #808080;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Mobile Menu Styles */
.mobile-menu-bar {
    display: none;
    background: #3e3e3e;
    color: #cccccc;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid var(--accent-color);
    user-select: none;
}

.mobile-menu-bar:hover {
    background: #2d2d30;
}

.mobile-menu-bar .menu-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.mobile-menu-bar .menu-text {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .mobile-menu-bar {
        display: flex;
        align-items: center;
    }
    
    .header {
        padding: 1rem;
    }
    
    .header h1 {
        font-size: 1.1rem;
    }
    
    .header p {
        display: none;
    }
    
    .header-controls {
        gap: 0.5rem;
    }
    
    .discord-login-button {
        padding: 0.3rem 0.5rem !important;
        flex-direction: column !important;
        gap: 0.2rem !important;
        min-height: 42px !important;
    }
    
    .discord-login-button .login-text {
        display: block !important;
        font-size: 0.65rem !important;
        line-height: 1 !important;
    }
    
    .discord-login-button picture {
        display: block !important;
    }
    
    .discord-login-button .discord-logo {
        height: 14px !important;
        width: 70px !important;
        display: block !important;
        object-fit: contain !important;
    }
    
    .user-profile {
        gap: 0.25rem;
    }
    
    .user-avatar {
        width: 36px;
        height: 36px;
    }
    
    .user-name {
        font-size: 0.8rem;
    }
    
    .container {
        position: relative;
        overflow: hidden;
        height: calc(100vh - 103px);
    }
    
    .sidebar {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        height: auto;
        max-height: 70vh;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }
    
    .sidebar.active {
        transform: translateY(0);
    }
    
    .main {
        width: 100%;
        padding: 1rem;
    }
    
    .message h3 {
        font-size: 1.2rem;
    }
    
    .param-table {
        font-size: 12px;
    }
    
    .param-table th {
        font-size: 10px;
    }
    
    .footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    /* Prevent zoom on input focus */
    .search-box {
        font-size: 16px;
    }
}

/* ===== EDITING STYLES ===== */

/* Edit buttons */
.edit-btn {
    background: transparent;
    border: none;
    padding: 2px;
    margin-left: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    vertical-align: middle;
    display: inline-block;
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.edit-btn:hover {
    transform: scale(1.15);
    opacity: 1;
}

.edit-btn svg {
    width: 100%;
    height: 100%;
    fill: var(--accent-color);
}

/* Editable sections */
.editable-section {
    position: relative;
}

.editable-section .edit-btn {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.6;
}

.editable-section:hover .edit-btn {
    opacity: 1;
}

/* Edit save/cancel buttons */
.edit-save-btn, .edit-cancel-btn {
    padding: 6px 12px;
    margin-right: 8px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 13px;
}

.edit-save-btn {
    background: var(--accent-color);
    color: white;
}

.edit-save-btn:hover {
    opacity: 0.9;
}

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

.edit-cancel-btn {
    background: #5a5a5a;
    color: white;
}

.edit-cancel-btn:hover {
    background: #6a6a6a;
}

/* Parameter editor */
.parameter-editor {
    background: #252526;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid var(--accent-color);
}

.parameter-editor h5 {
    margin: 0 0 15px 0;
    color: var(--accent-color);
}

.param-edit-row input {
    background: #1e1e1e;
    color: #cccccc;
    border: 1px solid #3e3e3e;
    padding: 4px 8px;
    font-size: 13px;
}

.param-edit-row input:focus {
    border-color: var(--accent-color);
    outline: none;
}

/* Add Parameter button */
.add-param-btn {
    background: #22aa22;
    color: white;
    border: none;
    padding: 8px 16px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 13px;
}

.add-param-btn:hover {
    background: #2abb2a;
}

/* Remove parameter button */
.remove-param-btn {
    background: #cc3333;
    color: white;
    border: none;
    padding: 4px 10px;
    cursor: pointer;
    border-radius: 3px;
}

/* No parameters message */
.no-parameters {
    color: #808080;
    font-style: italic;
    padding: 10px 0;
}

/* No notes message */
.no-notes {
    color: #808080;
    font-style: italic;
    padding: 10px 0;
}

/* Code block edit mode */
.code-block.editing pre {
    background: #1e1e1e;
    border: 1px solid var(--accent-color);
    padding: 10px;
}

/* Inline editing for h3 title */
h3 .edit-btn {
    font-size: 14px;
    vertical-align: baseline;
}

/* Format section editing */
.format.editable-section {
    position: relative;
}

.format .edit-btn {
    position: absolute;
    top: 5px;
    right: 5px;
}

/* Notes section editing */
.notes.editable-section {
    position: relative;
}

.notes .edit-btn {
    display: inline-block;
    position: static;
    margin-left: 10px;
}

/* Protocol documentation editing */
.protocol-documentation.editable-section {
    position: relative;
}

.protocol-documentation .edit-btn {
    display: inline-block;
    position: static;
    margin-left: 10px;
}

/* Code block edit button */
.edit-code-btn {
    position: absolute;
    top: 32px; /* Position below the Copy button */
    right: 8px; /* Align with Copy button */
    background: #2d2d2d;
    border: 1px solid #444;
    border-radius: 3px;
    padding: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.7;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.edit-code-btn:hover {
    transform: scale(1.1);
    opacity: 1;
    background: #3d3d3d;
}

.edit-code-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-color);
}

/* Show edit button when code block is expanded */
.code-content {
    position: relative;
}

/* Initially hide the edit button */
.edit-code-btn {
    display: none !important;
}

/* Show when parent pre block is visible */
pre.code-content[style*="display: block"] .edit-code-btn {
    display: flex !important;
}

/* ===== ADMIN PANEL STYLES ===== */

.admin-panel {
    padding: 20px;
}

.user-editor {
    background: #252526;
    border: 1px solid #3e3e3e;
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
}

.user-info-section, .permissions-section {
    margin-bottom: 30px;
}

.user-info-section h3, .permissions-section h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.user-info-section p {
    margin: 10px 0;
    color: #cccccc;
}

.user-info-section strong {
    color: #ffffff;
    margin-right: 10px;
}

.permissions-section label {
    display: block;
    margin: 10px 0;
    color: #cccccc;
    cursor: pointer;
}

.permissions-section input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
}

.admin-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #3e3e3e;
}

.save-user-btn, .delete-user-btn, .cancel-btn {
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.save-user-btn {
    background: var(--accent-color);
    color: white;
}

.save-user-btn:hover {
    opacity: 0.9;
}

.delete-user-btn {
    background: #cc3333;
    color: white;
}

.delete-user-btn:hover {
    background: #dd4444;
}

.cancel-btn {
    background: #5a5a5a;
    color: white;
}

.cancel-btn:hover {
    background: #6a6a6a;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #cccccc;
    margin-bottom: 5px;
}

.form-group input[type="text"] {
    background: #1e1e1e;
    color: #cccccc;
    border: 1px solid #3e3e3e;
    padding: 8px;
    font-size: 14px;
    font-family: monospace;
}

.form-group input[type="text"]:focus {
    border-color: var(--accent-color);
    outline: none;
}