/* assets/css/style.css */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Tag Panels */
.tags-panel {
    padding: 10px;
    background: #2c2e35;
    border-bottom: 1px solid #1c1e21;
}

.tags-header {
    font-size: 12px;
    font-weight: bold;
    color: #ccc;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-item {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    font-family: monospace;
    transition: all 0.2s;
}

.tag-item.campaign {
    background: #3730a3;
    color: #c3dafe;
    border: 1px solid #4338ca;
}

.tag-item.campaign:hover {
    background: #4338ca;
}

.tag-item.automation {
    background: #831843;
    color: #fbcfe8;
    border: 1px solid #be185d;
}

.tag-item.automation:hover {
    background: #be185d;
}

/* Custom Context Menu */
#context-menu {
    display: none;
    position: fixed;
    z-index: 999999;
    width: 200px;
    background: #1e1e2d;
    border: 1px solid #444;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    overflow: hidden;
    padding: 5px 0;
}

#context-menu .menu-header {
    padding: 5px 10px;
    font-size: 11px;
    font-weight: bold;
    color: #888;
    background: #252530;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
}

#context-menu .menu-item {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 13px;
    color: #e0e0e0;
    display: block;
    transition: background 0.1s;
}

#context-menu .menu-item:hover {
    background: #6366f1;
    color: white;
}

.panel-top {
    padding: 10px;
    background: #2c2e35;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1c1e21;
}

.panel-title {
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-group {
    display: flex;
    gap: 10px;
}

.btn {
    background: #444;
    border: none;
    color: #fff;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn:hover {
    background: #555;
}

.btn-primary {
    background: #007bff;
}

.btn-primary:hover {
    background: #0069d9;
}