/* Brand Guidelines Container */
.brand-guidelines-container {
    max-width: 800px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    padding: 20px;
}

/* Brand Guidelines List */
.brand-guidelines-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* List Items */
.brand-guideline-item {
    position: relative;
    padding: 8px 8px 8px 24px;
    margin: 0;
    line-height: 1.5;
}

/* Bullet Points */
.brand-guideline-item::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #0066cc;
    font-size: 18px;
}

/* Regular Text */
.brand-guideline-text {
    margin: 8px 0;
    color: #333;
    font-size: 16px;
}

/* Citation Links */
.citation-link {
    display: inline-flex;
    align-items: center;
    color: #0066cc;
    text-decoration: none;
    padding: 2px 6px;
    margin: 0 2px;
    border-radius: 4px;
    font-size: 0.9em;
    background-color: rgba(0, 102, 204, 0.1);
}

.citation-link:hover {
    background-color: rgba(0, 102, 204, 0.15);
}

/* Dark Mode Styles */
.dark-mode .brand-guidelines-container {
    color: #e1e1e1;
}

.dark-mode .brand-guideline-item::before {
    color: #66b3ff;
}

.dark-mode .brand-guideline-text {
    color: #e1e1e1;
}

.dark-mode .citation-link {
    color: #66b3ff;
    background-color: rgba(102, 179, 255, 0.1);
}

.dark-mode .citation-link:hover {
    background-color: rgba(102, 179, 255, 0.15);
} 