/* -------------------------------------------
   filename: unic_news_styles.css
   Purpose: Stylesheet for AI News Page
   ------------------------------------------- */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f9f9f9;
}

.news-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.card {
    width: 90%; /* Ensures all cards have the same width */
    max-width: 800px; /* Sets a reasonable max width */
    padding: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.news-text {
    font-size: 18px;
    margin: 10px 0;
    font-weight: normal; /* Ensure news text is not bold */
}

.news-date {
    text-align: right;
    font-size: 14px;
    color: #888;
}

.button-container {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
}

.button-3d {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    background: #f8f9fa;
    border: 2px solid #555; /* Dark gray border */
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.button-3d:hover {
    background: #e0e0e0;
}
