
body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 20px;
    display:flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
#main-container{
    max-width: 900px;
    width: 100%;
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 20px 30px;
    box-shadow: 0 4px 15px regba(0,0,0,0.5);
    display: none;
}
h1{
    text-align: center;
    color: #ffffff;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-top: 0;
}
#media-container img,
#media-container iframe{
    margin-bottom: 20px;
    max-width: 800px;
    background-color: #ffffff;
    border-radius: 4px;
    object-fit: contain;
}
#apod-title{
    font-size: 1.8em;
    margin: 5px;
    color: #ffffff;
}
#apod-meta{
    font-size: 0.9em;
    color: #aaa;
    margin-bottom: 20px;
}
#apod-explanation{
    font-size: 1.1em;
    color:#e0e0e0;
    line-height: 1.7;
    text-align: justify;
}
.status-message{
    font-size: 1.5em;
    text-align: center;
}
.error{
    color: #ff6b6b;
}