/* Dawned Gradient Background */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: linear-gradient(180deg, #FF8C00, #FFA500, #FFD700, #FFFFFF);
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Quote Box */
.quote-box {
    background: rgba(255, 255, 255, 0.7);
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    width: 100%;
}

/* Search Bar Container */
.search-container {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Search Bar */
#searchForm {
    display: flex;
    width: 60%;
    max-width: 600px;
    background: white;
    border-radius: 30px;
    padding: 5px 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

#searchInput {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 10px;
    border-radius: 30px;
}

#searchButton {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

/* Dawned OS Footer */
#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    border-top: 1px solid rgba(0,0,0,0.1);
}

#footer-left,
#footer-center,
#footer-right {
    display: flex;
    align-items: center;
}

#footer-center {
    justify-content: center;
    flex: 1;
    text-align: center;
}
