<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #121212;
}

.notam-container {
    max-width: 800px;
    margin: auto;
    background: rgba(255, 255, 255, 0.164);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.notam-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
}

.back-button {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.back-button i {
    margin-right: 8px;
}

.header-info {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.notam-badge {
    background: #000080;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 5px;
}

.created-by {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 15px;
}

.notam-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.notam-content {
    text-align: left;
}

h1 {
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
}

p {
    color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .notam-container {
        padding: 15px;
        margin-top: 100px;
    }

    h1 {
        font-size: 20px;
        top: 10px;
        margin-top: 50px;
    }

    .back-button {
        font-size: 16px;
    }

    .notam-date {
        font-size: 12px;
    }

    .created-by {
        font-size: 12px;
    }

    .notam-image {
        margin-bottom: 15px;
    }

    p {
        font-size: 14px;
    }
}

/* Extra small screens (phones in portrait mode) */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .notam-container {
        padding: 10px;
    }

    h1 {
        font-size: 18px;
        top: 5px;
    }

    .notam-date {
        font-size: 10px;
    }

    .created-by {
        font-size: 10px;
    }

    .back-button {
        font-size: 14px;
    }

    .notam-image {
        margin-bottom: 20px;
    }

    p {
        font-size: 12px;
    }
}
</pre></body></html>