body {
    margin: 0;
    padding: 0;
    background-color: #05070a;
    color: #00ff66;
    font-family: 'Courier New', Courier, monospace;
    min-height: 100vh;
    user-select: none;
}

.taskbar {
    background-color: #0c0f14;
    border-bottom: 2px solid #00ff66;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
    position: relative;
    z-index: 9999;
}

.window {
    position: absolute;
    background-color: rgba(12, 15, 20, 0.95);
    border: 2px solid #00ff66;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.3);
    width: 1000px;
    max-height: 100vh;
    overflow-y: auto;
}

.nasa-scanner-window { 
    top: 100px;
     left: 400px;
 }

.window-header {
    background-color: #00ff66;
    color: #05070a;
    font-weight: bold;
    padding: 8px 12px;
    font-size: 14px;
    cursor: move;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.window-body {
    padding: 15px;
    font-size: 13px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.controls {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

input[type="date"] {
    background-color: #05070a;
    border: 1px solid #2983a7;
    color: #54f09a;
    padding: 8px;
    font-family: monospace;
    border-radius: 4px;
    margin-bottom: 12px;
    width: 250px;
}

button {
    background-color: #6af8a3;
    color: #05070a;
    border: none;
    padding: 8px 15px;
    font-family: monospace;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s;
}

button:hover {
    background-color: #fff;
    box-shadow: 0 0 10px #00ff66;
}

.space-result {
    margin-top: 15px;
    border-top: 1px dashed #00ff66;
    padding-top: 15px;
    width: 100%;
    text-align: center;
}
#space-img {
    display: none;
    max-width: 100%;
    max-height: 350px;
    width: auto;
    height: auto;
    border: 2px solid #00ff66;
    border-radius: 4px;
    margin: 10px auto 0 auto;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.6);
}
.space-explanation {
    font-size: 12px;
    color: #9fffc0;
    text-align: left;
    margin-top: 10px;
    padding: 10px;
    border: 1px dashed rgba(0, 255, 102, 0.4);
    border-radius: 4px;
    display: none;
}

.space-copyright {
    font-size: 11px;
    color: #6af8a3;
    margin-top: 6px;
    font-style: italic;
    display: none;
}
/*download the pic*/
.download-btn {
    display: none;
    margin-top: 10px;
    background-color: #05070a;
    color: #00ff66;
    border: 1px solid #41d87d;
    text-decoration: none;
    padding: 8px 15px;
    font-family: monospace;
    font-weight: bold;
    border-radius: 4px;
}

.download-btn:hover {
    background-color: #00ff66;
    color: #20d4a7;
}

