/* css for boxes options can be dropped in */
.priority {
    width: 16vw;
    height: 70px;
    padding: 10px;
    border: 1px solid #aaaaaa;
    border-radius: 6px;
    display: block;
    
  }
 
/* css for draggable boxes */
.drag {
    line-height: 17px;
    margin:5px 1px;
    text-align: center;
    
    display: inline-block;
    padding: 10px 0px;
    cursor: move;
    z-index: 10;
    background-color: #3b67e0;
    color: #fff;
    width: 15vw;
    height: 30px;
    border-radius: 5px;
    box-sizing: content-box;
    
}
/* as the screen gets smaller the font sizes are altered
so that they still fit and are visible */
@media screen and (max-width: 800px ) {
    .drag {
        width: 120px;
        font-size: 1.9vw;
    }
}
/* font sizes are increased slightly to make it more visible */
@media  screen and (max-width:600px) {
    .drag {
        width: 120px;
        font-size: 2.1vw;
    }
    
}
@media screen and (min-width: 1000px) {
    .drag {
        width: 230px;
        
    }
}

/* box containing all of the draggable features (css here creates border)*/
#priorityOptions{
    border-radius: 25px;
    border: 2px solid #604dcc;
    padding: 20px;
    
}
/* table containing priority boxes and their titles */
#priorityBoxesTable{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    
    width: 48vw
    /* 3 times 20vw */
}

.optionsTable {
    max-width: 800px;
    display: absolute;
}
.buttons {
    vertical-align: top;
    border-radius: 30%;
    width: 10vw;
    height: 10vw;
    margin:10px 5px;
    font-size: 1.2vw;
    
}


/* as the screen gets smaller the font sizes are altered
so that they still fit and are visible */
@media screen and (max-width: 800px ) {
    .buttons{
        width: 15vw;
        height: 15vw;
        font-size: 1.8vw;
    }
}
/* font sizes are increased slightly to make it more visible */
@media  screen and (max-width:600px) {
    .buttons {
        width: 18vw;
        height: 18vw;
        font-size: 1.96vw;
    }
    
}



