/******************************************************************************
START Glitch hello-app default styles

The styles in this section do some minimal CSS resets, set default fonts and 
colors, and handle the layout for our footer and "Remix on Glitch" button. If
you're new to CSS they may seem a little complicated, but you can scroll down
to this section's matching END comment to see page-specific styles.
******************************************************************************/


/* 
  The style rules specify elements by type and by attributes such as class and ID
  Each section indicates an element or elements, then lists the style properties to apply
  See if you can cross-reference the rules in this file with the elements in index.html
*/

/* Our default values set as CSS variables */

a {color:#0000EE;}         /* Unvisited link  */
a:visited {color:#0000EE;} /* Visited link    */
a:hover {color:#0000EE;}   /* Mouse over link */
a:active {color:#0000EE;}  /* Selected link   */

body{
  font-family: monospace;
}
      
header{
  padding: 1em;
  width: 100%;
  text-align: center;
  margin-bottom: 2em;
}

header h1{
  width: 100%;
  font-weight: normal;
  font-size: 1rem;
  margin: .5rem 0;
}
      
      table, {
        width: 100%;
        margin: 2rem auto;
        table-layout: fixed; /* fixed the non wrapping text issue i was having */
      }
#eepy{
  width: 2rem;
  margin-left: 1rem; 
  margin-top: 0;
  padding-top: 0;
}

#balloon{
  margin-bottom:1em
}

#col1, #col2{
    display: flex;
  flex-direction: row;
  align-content:flex-end;
/*   justify-content:space-between; */
  align-items:flex-end;
gap:40vw;
  
}

.image2{
  width:40px;
/*           border:1px solid black;
 */
}



.pink{
  background-color:pink;
}
      
      p{
        margin: 1em;
      }
      
      th{
        text-align: left;
        cursor: pointer;
        text-wrap: wrap;
      }


/* this was for non wrapping issue but i think its good now 
      td{
        word-wrap:break-word 
      } 
*/
      
      th,td{
        padding: 6px 18px;
/*         justify-content:Center;
        align-content:center;
        border:1px solid black; */
      }
      
      tr[type='working'] td[info='artist'], tr[type='working'] td[info='title']{
        color: #FF94ED;
      }
      
      tr[type='brainstorming'] td[info='artist'], tr[type='brainstorming'] td[info='title']{
        color: cornflowerblue;
      }
      
      tr[type='sharing'] td[info='artist'], tr[type='sharing'] td[info='title']{
        color: darkorange;
      }

