/* Secondary stylesheet for catnames.co.uk */
/* Complements style.css with site-specific overrides */

/* Campaign-specific styling */
.campaign-header {
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5;
    border-bottom: 3px solid #000066;
}

.campaign-title {
    color: #000066;
    font-size: 28px;
    font-weight: bold;
}

.campaign-subtitle {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

/* Alert boxes for campaign calls to action */
.alert {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.alert-strong {
    background-color: #f8d7da;
    border-color: #dc3545;
}

/* Letter/Template sections */
.template {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    margin: 15px 0;
    white-space: pre-wrap;
    font-family: "Courier New", monospace;
    font-size: 13px;
}

/* Links list styling */
.links-list {
    list-style: none;
    padding: 0;
}

.links-list li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.links-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #000066;
}

/* Sitemapper page styling */
.sitemap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.sitemap a {
    display: block;
    padding: 10px;
    background-color: #f0f0f0;
    text-align: center;
    border-radius: 4px;
}

.sitemap a:hover {
    background-color: #e0e0e0;
}
