.midnight-neon {
    --bg: #0F0A1A;
    --card: #211832;
    --header: #F25912;
    --text: #DCD7C9;
    --hover: #5C3E94;
}

/* Palette 2: Icy Frost */
.icy-frost {
    --bg: #213555;
    --card: #9AA6B2;
    --header: #D9EAFD;
    --text: #F8FAFC;
    --hover: #BCCCDC;
}

/* Palette 3: Deep Forest */
.deep-forest {
    --bg: #1A241E;
    --card: #2C3930;
    --header: #A27B5C;
    --text: #DCD7C9;
    --hover: #3F4F44;
}

h2, h3, h4 {
    color: var(--header);
}

p, a {
    color: var(--text);
}

a:hover {
    color: var(--header);
}

a {
    text-decoration: none;
}

main {
    display: flex;
    gap: 20px;
}

aside {
    display: none;
    overflow: hidden auto;
    position: sticky;
    top: 20px;
    width: 12%;
    top: 24px;
    height: calc(100vh - (24px * 2));
    max-width: 15%;
}

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.content-header {
    width: 100%;
    text-align: center;
}

aside, .card {
    background-color: var(--card);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cards {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 20px;
    width: 80%;
}

.cards .card {
    min-width: 33%;
}

aside ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body > header {
    /* display: flex; */
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 2vw;
}

body > header h2 {
    margin: 0;
}

body > header nav ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    gap: 15px;
}

body {
    background-color: var(--bg);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
}

.main-content {
    display: flex;
    justify-content: start;
}

.content-body {
    width: 90%;
    padding: 20px;
    margin-right: 20px;
}

button {
    background-color: var(--header);
    color: var(--text);
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

/* .content.miniapp {
    
} */

@media screen and (min-width: 600px) {
    .main-content > aside[class = "miniapp"] {
        display: block;
    }
}

/* Notes miniapp */

#doodle-button {
    margin-bottom: 15px;
}

.notes-section {
    width: 100%;
    border: 1px solid var(--card);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.notes-section > .notes-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.notes-section-header button {
    background-color: var(--header);
    color: var(--text);
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.form {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.form-not-active {
    display: none;
}

#todo-form input[type="text"] {
    width: 60%;
}

#link-form input[type="text"] {
    width: 30%;
}

/* Google material symbols */
.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 20;
}
