@import url("themes.css");

.header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    margin: 0.5rem 0.5rem;
}

.path {
    flex-grow: 3;
}

.center {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.list {
    width: 90%;
    display: grid;
    row-gap: var(--gap);
}

.row {
    width: 100%;
    display: flex;
    column-gap: var(--gap);
}

.widget {
    width: 100%;
    padding: 0.25rem 0.5rem;
    color: var(--background);
    background: var(--color);
    font-size: 0.75rem;
}

.add {
    width: 3rem;
    height: 3rem;
    margin: 1rem 0;
    padding: 0;
    border-radius: 50%;
    font-size: 2rem;
}

.delete {
    width: fit-content;
    background: #ff5555;
    font-size: 1rem;
}

.icon {
    display: grid;
    margin: 0.25rem;
    font-size: 3rem;
}

.menu {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}