:root {
  --bg: #e16870;
  --surface: #1e293b;
  --text-primary: #EEE7C8;
  --text-muted: #6e6639;
  --accent: #e16870;
  --accent-hover: #7d373c
}

body {
    background-color: var(--bg);
    color: var(--text-primary);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0;
}

p {
    margin-top: 0;
    margin-bottom: 0;
}

ul {
    margin-top: 0;
}

.container {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.heading-container {
    display: flex;
    flex-direction: column;
    /* background-color: #78C091;     */
}

.button-bar {
    display: flex;
    flex-direction: row;
    gap: 10px;
    /* background-color: #78C091; */
}

.bar-button {
    background-color: var(--accent);
    color:var(--text-primary);
    padding: 12px 16px;
    font-size: 12px;
    cursor: pointer;
}

.bar-button:hover {
    background-color: var(--accent-hover);
}

.button {
    background-color: var(--accent);
    border: var(--text-primary);
    color: var(--text-primary);
    padding: 4px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-style: dashed;
    border-radius: 10px;
    border-color: var(--text-primary);
}

.button:hover {
    background-color: var(--accent-hover);
}