/* MEROS Corporate Design - Minimal */
:root {
    --more-green: #1F3B2E;
    --more-dark: #0D1F18;
    --more-gray: #2A2D2C;
    --more-light: #F2F2F0;
    --accent: #4A6B50;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--more-light);
    color: var(--more-dark);
}

.header {
    background: var(--more-dark) !important;
    border-bottom: 2px solid var(--more-green);
}

.btn {
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--more-green);
    border-color: var(--more-green);
}

.btn-primary:hover {
    background: var(--accent);
}

.sidebar {
    background: white;
    border-right: 1px solid #e2e8f0;
}

.modal-content {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.structure-marker {
    background: var(--more-green);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.status-open { color: #e53e3e; }
.status-in-progress { color: #dd6b20; }
.status-done { color: #38a169; }
