/*
    Landon Hansen
    4/19/2024
    Project to learn more about JQueryUI
*/

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
}

input, textarea {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.drag {
    display: block;
    width: 150px;
    height: 150px;
    background-color: lightgray;
}

main {
    max-width: 920px;
    margin: auto;
}

nav {
    display: flex;
    /* align-items: center; */
    justify-content: flex-start;

    height: 60px;
    width: 100vw;
    
    box-sizing: border-box;
    margin-bottom: 8px;
    padding: 5px;

    background-color: rgb(7,8,9);
    color: white;

    font-size: 2rem;
}

.nav-title {
    font-weight: bold;
}

#accordion > h3 {
    margin: 2px;
    padding: 10px;

    border: 1px solid black;
}

#accordion > h3:first-of-type {
    border-radius: 5px 5px 0 0;
}

#accordion > h3:last-of-type {
    border-radius: 0 0 5px 5px;
}

#accordion > div > p {
    margin: 0;
    padding: 5px;
}

#sortable > span {
    display: block;
    border: 1px solid black;
    
    /* border-radius: 5px; */

    padding: 5px;
    margin: 2px;
}

#sortable > span:first-of-type {
    border-radius: 5px 5px 0 0;
}

#sortable > span:last-of-type {
    border-radius: 0 0 5px 5px;
}

#datepicker {
    font-size: 1.5em;
}

.ui-progressbar-value {
    transition: width 2s ease-in-out;
}

#selectable {
    display: flex;
    flex-wrap: wrap;
    width: 400px;
}

#selectable > * {
    display: block;
    padding: 5px;
    margin: 2px;

    width: 100px;
    height: 50px;

    font-weight: bold;

    border: 1px solid black;
}

#selectable > .ui-selected {
    background-color: gray;
    color: white;
}

#selectable > .ui-selecting {
    background-color: lightgray;
}

#custom-handle {
    text-align: center;
    outline: none;
}