body {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    background: #f7f8fa;
    margin: 0;
    padding: 0;
}

.header {
    text-align: center;
    margin-top: 40px;
    font-size: 2.5em;
    color: #234e70; /* Muted deep blue */
}

.header2 {
    text-align: center;
    margin-top: 20px;
    font-size: 1.5em;
    color: #234e70; /* Muted deep blue */
}

.about-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.search-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.search-bar {
    width: 400px;
    height: 2.5em;
    font-size: 1.2em;
    padding: 0.5em 1em;
    border: 1px solid #bfc9d1;
    border-radius: 8px;
    margin-bottom: 1em;
    box-shadow: 0 2px 6px rgba(35, 78, 112, 0.04);
    background: #f7f8fa;
    color: #234e70;
}

.search-button {
    font-size: 1.1em;
    padding: 0.5em 2em;
    border: none;
    border-radius: 8px;
    background: #234e70; /* Muted deep blue */
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}
.search-button:hover {
    background: #3a6ea5; /* Lighter blue */
}

.results-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.results-list {
    list-style: none;
    padding: 0;
    width: 80%;
    max-width: 900px;
}

.result-ds {
    font-size: 1.1em;
    margin-bottom: 1.5em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(35, 78, 112, 0.06);
    padding: 1em 1.5em;
    border-left: 6px solid #f7a440; /* Muted orange accent */
}

.snippet-list {
    list-style: disc inside;
    margin-left: 2em;
    margin-top: 0.5em;
}

.snippet-item {
    margin-bottom: 0.7em;
    font-size: 1em;
    color: #234e70;
    background: #f3f6fa;
    border-radius: 6px;
    padding: 0.5em 1em;
    border-left: 4px solid #f7a440; /* Muted orange accent */
}

mark {
    background: #f7a440; /* Muted orange */
    color: #234e70;
    font-weight: bold;
    border-radius: 3px;
    padding: 0 0.2em;
}

.back-home-form {
    display: flex;
    justify-content: center;
    margin-top: 2em;
}

.back-home-button {
    font-size: 1.1em;
    padding: 0.5em 2em;
    border: none;
    border-radius: 8px;
    background: #234e70;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
}
.back-home-button:hover {
    background: #3a6ea5;
}

.snippet-full-form {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5em;
} 