/* Styling for the release notes page */

body {
    background-color: #ffffff;
    color: #222;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    margin: 0;
    padding: 0;
}

.release-container {
    max-width: 980px;
    margin: 40px auto;
    padding: 20px;
}

.release-heading {
    text-align: center;
    color: orange;
    font-size: 2.2em;
    margin-bottom: 10px;
}

.release-subheading {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

.release-date {
    font-weight: bold;
    color: #d35400;
}

.release-summary {
    font-size: 0.95em;
    margin-bottom: 15px;
    color: #444;
    text-align: left;
}

.release-entry {
    background-color: #f9f9f9;
    border-left: 5px solid #ffa500;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.release-entry h2 {
    color: #d35400;
    font-size: 1.6em;
    margin-bottom: 15px;
    text-align: left;
}

.release-entry h3 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.25em;
    text-align: left;
}

.release-entry ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.release-entry ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.release-entry p,
.release-entry ul,
.release-entry li {
    text-align: left;
    font-size: 0.95em;
}

.release-image-wrapper {
    margin: 20px 0 30px 0;
    text-align: center;
}

.release-image {
    width: 100%;
    max-width: 940px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
}

.release-image-caption {
    font-size: 0.9em;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

/* Disclaimer Styling */
.disclaimer {
    background-color: #fff3cd;
    border-left-color: #ffc107;
    border-left-width: 5px;
}

/* Mobile and Smartphone Optimization */
@media (max-width: 768px) {
    .release-container {
        padding: 10px;
    }

    .release-heading {
        font-size: 1.8em;
    }

    .release-entry {
        padding: 15px;
    }

    .release-image {
        max-width: 100%;
    }

    .release-entry ul {
        padding-left: 20px;
    }
}
