/* Public Notices Plugin Styles */

.public-notice {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.public-notice h1 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.notice-meta {
    background: #f8f9fa;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #3498db;
    font-size: 0.9rem;
    line-height: 1.6;
}

.notice-meta strong {
    color: #2c3e50;
    font-weight: 600;
}

.notice-body {
    line-height: 1.7;
    color: #333;
}

.notice-body p {
    margin-bottom: 1rem;
}

/* PDF Download Button */
.notice-pdf-download {
    margin: 2rem 0;
    text-align: center;
}

.pdf-download-btn {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

.pdf-download-btn:hover {
    background: #2980b9;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.4);
}

/* Responsive design */
@media (max-width: 768px) {
    .public-notice {
        margin: 1rem;
        padding: 1rem;
    }
    
    .public-notice h1 {
        font-size: 1.5rem;
    }
    
    .pdf-download-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
} 