/* Color Palette:
   Accent: 171, 247, 50
   Secondary: 26, 26, 26
   Background: 15, 15, 15
   Text: 223, 223, 223
*/

h1, h2, button, p, label, hr, select, input {
    color: rgba(223, 223, 223);
    font-family: "Work Sans", sans-serif;
}

button {
    cursor: pointer;
}

body {
    margin: 20px;
    background-color: rgba(15, 15, 15);
}

h1, h2 {
    font-family: "Tomorrow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

p {
    font-size: 1.4rem;
}

.cell {
    background-color: rgba(26, 26, 26);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.secondary-text {
    color: rgba(223, 223, 223, 0.5);
    font-size: 1.2rem;
}

li {
    color: rgba(0, 0, 0, 0);
    margin: 0px;
    padding: 4px;
    list-style-type: none;
}

p, h1, h2 {
    margin: 4px;
}

.strikethrough {
    text-decoration: line-through;
}

.checkbox {
    color: rgba(171, 247, 50);
    border-color: rgba(171, 247, 50);
    border-style: solid;
    background-color: rgba(26, 26, 26);
    border-radius: 4px;
    color: rgba(171, 247, 50);
    border-radius: 4px;
    border-width: 2px;
    margin-right: 4px;
    transition-duration: 0.2s;
    font-weight: bold;

    width: 48px;
    height: 24px;
    font-size: 100%;
}

.checkbox:hover {
    color: rgba(26, 26, 26);
    background-color: rgba(171, 247, 50);
    transition-duration: 0.2s;
}

.completed-checkbox {
    color: rgba(26, 26, 26) !important;
    border-color: rgba(223, 223, 223, 0) !important;
    background-color: rgba(223, 223, 223, 0.5);
}

.task-button {
    border-style: solid;
    border-width: 2px;
    border-color: rgba(223, 223, 223, 0);
    border-radius: 4px;
    padding: 0;
    height: 1.5rem;
    width: 1.5rem;
    color: rgb(223, 223, 223);
    text-transform: uppercase;
    background-color: rgba(26, 26, 26);
    display: flex;
    align-items: center;
    justify-content: center;
}

.created-task {
    flex-direction: row;
    display: flex;
    gap: 4px;
}

.task-button:hover {
    border-color: rgba(223, 223, 223, 1);
    transition-duration: 0.2s;
}

.task-icon {
    width: 100%;
    height: 100%;
    object-fit: contain; /* preserves aspect ratio */
}

.timestamp-tag {
    border-style: solid;
    border-width: 2px;
    border-color: rgba(223, 223, 223);
    border-radius: 4px;
    padding-left: 4px;
    padding-right: 4px;
    color: rgba(223, 223, 223);
    font-weight: bold;
    text-transform: uppercase;
    background-color: rgba(26, 26, 26);
    height: 1.2rem;
    font-size: 100%;
}

.sticky-button {
    font-weight: bold;
    background-color: rgba(26, 26, 26);
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 4rem;
    height: 4rem;
    font-size: 200%;
    border-radius: 12px;
    border-style: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    color: rgba(223, 223, 223);
    transition-duration: 0.2s;
    font-family: "Work Sans", sans-serif;
}

.sticky-button:hover {
    background-color: #a3f744;
    color: rgba(26, 26, 26);
    transition-duration: 0.2s;
}

#add-button  {
    left: 20px;
}

#show-reminders {
    left: 100px;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    min-height: 1.5rem;
    max-width: 8rem;
}

#task-name {
    background-color: rgba(0, 0, 0, 0);
    border-style: none;
    color: rgba(223, 223, 223)
}

#task-count-adjustment {
    width: 2rem
}