/*Reset*/
*,
::after,
::before {
    box-sizing: border-box;
}

body {
    margin: 0;
}

img {
    max-width: 100%;
}

/*Tokens*/
:root {
    --color-bg: #ecebff;
    --color-surface:#ffffff;
    --color-text-primary:#1b213c;
    --color-text-secondary:#969696;

    --font-heading:"Space Grotesk", sans-serif;
    --font-body: "Inter", sans-serif;
}

/*Layout*/
main{
    min-height: 100vh;
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
}

/*Page header*/
.page-header {
    background-color: var(--color-surface);
    padding: 1.5rem;
}

.page-header h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text-primary);
}

.no-search-results {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.no-search-results h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--color-text-primary);
    margin: 0 0 0.5rem;
}

.no-search-results p {
    font-family: var(--font-body);
    color: var(--color-text-secondary);
    max-width: 420px;
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

.no-search-action {
    display: flex;
    gap: 1rem;
}

.no-search-action button {
    padding: 0.6rem 1rem;
    border-radius: 16px;
    border: none;
    background-color: #4a4a4a;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.no-search-action a {
    align-self: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text-primary);
    text-decoration: underline;
}


