@import url(combo_box.css);

@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 50;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}    

@keyframes smooth_appears {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}    


@keyframes scaleAnimation {
    0% {
        scale: 90%;
        opacity: 0.5;
    }
    25% {
         opacity: 1;
    }
    100% {
        scale: 100%;
        opacity: 1;
    }
}    


html, body{
    /* background-color: antiquewhite; */
    background-color: rgb(28, 58, 25);
    background-image: url(images/background.jpg);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14px;
    height: 95vh;
    width: 100vw;
    overflow: hidden;
    margin: 0px;
}
button{
   min-width: 92px;
   padding-bottom: 8px;
   padding-top: 8px;
   border: 1px solid rgb(109, 109, 109);
   background: linear-gradient(rgb(219, 219, 219), rgb(185, 185, 185));
   border-radius: 3px;
}
button:hover{
   background: rgb(219, 219, 219);
}

button:active{
   background-color: rgb(185, 185, 185);
}

.minibutton{
   min-width: 92px;
   padding-bottom: 2px;
   padding-top: 2px;
   border: 1px solid rgb(109, 109, 109);
   background: linear-gradient(rgb(219, 219, 219), rgb(185, 185, 185));
   border-radius: 3px;
}
minibutton:hover{
   background: rgb(219, 219, 219);
}

minibutton:active{
   background-color: rgb(185, 185, 185);
}


.divbutton{
   background-color: antiquewhite;
   /* border: 1px solid #5c5c5c;
   border-radius: 3px; */
   cursor: pointer;
}

.divbutton:hover{
   background-color: rgb(231, 231, 231);
   border: 1px solid #b3b3b3;   
}

.divbutton:active{
   background-color: gray
}

.divbutton_simple{
   display: block;
   background-color: #eeeeee;
   /* border: 1px solid #5c5c5c;
   border-radius: 3px; */
   cursor: pointer;
}

.divbutton_simple:hover{
   transform: scale(1.15);
}

.divbutton_simple:active{
   background-color: #6fc3dd;
}

.divbutton_transparent{
   position: relative;
   border-radius: 3px; */
   cursor: pointer;
}

.divbutton_transparent:hover{
   background-color: rgba(0,0,0, 0.25);
}
.divbutton_transparent:active{
   transform: scale(0.9);
   background-color: rgba(0,0,0, 0.5);
}


.div_button_seeds_and_sorts
{
   position: relative;
   background: linear-gradient(rgb(241, 237, 237), rgb(178, 211, 243));
   border: 1px solid rgb(131, 131, 131);
   padding: 4px;
   border-radius: 3px;
}
.div_button_seeds_and_sorts:hover
{
   transform: translate(0px, 0px);
   background: linear-gradient(rgb(255, 255, 255), rgb(227, 241, 255));
}

.div_button_seeds_and_sorts:active
{
   transform: translate(0px, 0px);
   background: linear-gradient(rgb(182, 182, 182), rgb(227, 241, 255));

}
.div_button_seeds_and_sorts:active > img
{
   transform: translate(1px, 1px);
}



.checkbutton{
   position: relative;
   font-family : Arial, Helvetica, sans-serif;
   font-size: 13px;
   display: inline-block;
   /* background: #e0e0e0; */
   background: linear-gradient(to right, #e0e0e0, #cecece);
   border: 1px solid rgb(95, 95, 95);
   border-radius: 3px;
   padding: 4px 16px 4px 16px;
   box-shadow: 5px 5px 8px rgba(0,0,0,0.5);
   cursor: pointer;
   user-select: none;
   /* transition: all 0.2s ease; */
}

.checkbutton[aria-checked="true"] {
  left: 2px;
  top: 2px;
  background: #89bb8b;
  color: black;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  /* transform: translate(5px, 5px); */
}

.checkbutton:hover{
   transform: scale(1.05);
   transition: all 0.2s ease;
}
.checkbutton:active{
   background: linear-gradient(to right, #9c9c9c, #cecece);
   transform: scale(1);
   transition: all 0.05s ease;
}

.medium_square_button
{
   width: 32px;
   height: 32px;
   background: linear-gradient(lightgray, darkgray);
   border: 1px solid rgb(131, 131, 131);
   padding: 4px;
   border-radius: 3px;
}

.font_size{
    font-size: 12px;
}

.font_bold{
   font-weight: bold;
}

.app_header{
   padding: 8px;
   /* background-color: cadetblue; */
   background: linear-gradient( to right,cadetblue, rgb(67, 103, 104));
   width: 100%;
   font-size: 24px;
   font-family: Arial, Helvetica, sans-serif;

}
.app_vert{
   display: flex;
   flex-direction: column;
   flex: 1;
   align-items: flex-start;
   width: 100%;
   height: 100%;
}

.app_area{
   display: flex;
   flex: 1;
   align-items: flex-start;
   min-height: 0;
   width: 100%;
}

.app_menu{
   display: flex;
   flex-direction: row;
   background-color: rgb(54, 89, 90);
   /* border: 1px solid darkgray; */
   /* background-color: rgba(230, 230, 230, 0.315); */
   height: 24px;
   width: 100%;
   margin-bottom: 8px;
   align-items: center;
}

.menu_item{
   border-right-style: solid;
   border-right-width: 1px;
   border-right-color: black;
   color: #ffffff;
   background: linear-gradient(rgba(100,100,100,0.15), rgba(255,255,255,0.15));
   /* background-color: rgb(255, 255, 255, 50); */
   padding: 2px 16px 2px 16px;
   font-size: 12px;
   font-weight: bold;
   

   cursor: pointer;
}

.menu_item:hover{
   background-color: rgb(56, 56, 56);
}

.work_area{
   flex: 1;
   display: flex;
   flex-direction: column;
   height: 100%;

}
.main_screen{
   display: flex;
   flex-direction: column;
   flex: 1;   
}

.modal_overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;    
}

.msgbox_overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1000;    
}

.position_anchor {
   position: relative;
}

.scrollable{
   width: 100%;
   height: 100%;
   overflow-y: auto; 
}

.scroll_area{
   min-height: 0;
   overflow-y: auto;
   overflow-x: hidden; 
}

.min_height_0{
   min-height: 0;
}


.full_width_left_center{
   width: 100%;
   display: flex;
   align-items: center;
   text-align: left;
}

.full_height{
   height: 100%;
}

.hline{
   height: 1px;
   width: 100%;
   background-color: rgb(155, 155, 155);
}


.msg_box_window {
   background: linear-gradient(white 70%, #eeeeee);
   position: relative;
   border-radius: 5px;
   border-width: 1px;
   border-style: solid;
   border-color: gray;
   width: 400px;
   padding: 0px;
   margin-top: 64px;
   max-width: 400px;
   min-height: 128px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
   animation: scaleAnimation 0.25s ease;
}
.modal_window {
   position: relative;
   background: white;
   border-radius: 5px;
   width: 400px;
   /* padding: 16px; */
   padding: 0px;
   max-width: 90%;
   min-height: 128px;
   box-shadow: 0 20px 40px rgba(0,0,0,0.2);
   animation: scaleAnimation 0.25s ease;
   display: flex;
   flex-direction: column;
   max-height: 90%;
 }

 .items_row_row{
   background-color: #d1d1d1;
   align-items: center;
   gap: 2px;

 }
.items_row_item{
   display: flex;
   min-height: 19px;
   min-width: 24px;
   background: linear-gradient(#a3b89d, #819680);
      /* background-color: #04789b; */
   color: #000000;
   font-size: 14px;
   gap: 8px;
   border: 1px solid #e0e0e0;
   border-radius: 10px;
   padding: 4px 16px 4px 16px;
   cursor: pointer;
}
.item_row_delete{
   transform: scale(1);
}

.item_row_delete:hover{
   transform: scale(1.36);
}


.items_row_plus_item{
   border: 2px solid black;
   border-radius: 19px;
   background-color:white ;
   text-align: center;
   font-weight: bold;
   height: 19px;
   width: 19px;
   cursor: pointer;
}
.items_row_plus_item:hover
{
   background-color: bisque;
   transform: scale(1.1);
}

.items_row_plus_item:active
{
   background-color: bisque;
   transform: scale(0.9);
}



 .select_seed_window {
     min-width: 800px;
     min-height: 0;
     height: 90%;
 }

 .journal_header
 {
   /* background: blue; */
   background: linear-gradient(to right, blue, rgb(16, 16, 173));
   color: white;
   font-size: 24px;
   font-weight: bold;
   padding: 8px;
   border-top-left-radius: 3px;
   border-top-right-radius: 3px;
 }

 .generic_header
 {
   /* background: blue; */
   background: linear-gradient(to right, rgb(107, 107, 107), rgb(75, 75, 75));
   color: white;
   font-size: 24px;
   font-weight: bold;
   align-content: center;
   padding: 8px;
   border-top-left-radius: 3px;
   border-top-right-radius: 3px;
 }

 .generic_header-small{
   font-size: 16px;
 }

 .section_header_1{
   font-size: 16px;
   font-weight: bold;
 }

 .section_header_color{
   padding: 4px;
   background-color: aqua;   
 }

.small_window_header
 {
   background: linear-gradient(to right, rgb(107, 107, 107), rgb(75, 75, 75));
   color: white;
   font-size: 16px;
   font-weight: bold;
   padding: 8px;
   border-top-left-radius: 3px;
   border-top-right-radius: 3px;
 }


.vtable{
    border-width: 1px;
    border-style: none;
    border-color: black;
    border-spacing: 1px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    width: 100%;
 }
 .vtable_header{
   background-color: #858585cc;
   font-family: Verdana, Geneva, Tahoma, sans-serif;
   font-weight: 700;
   font-size: 12;
   height: 24px;
 }

 .vtable_row{
   font-size: 12px;
   background-color: gainsboro;
   padding: 4px;
   cursor: pointer;
 }

 .vtable_row:hover
 {
    background-color: powderblue;
 }
 .vtable_row_odd{
   font-size: 12px;
   background-color: bisque;
   padding: 4px;
   cursor: pointer;
 }

 .vtable_cell{
   padding: 4px;   
 }

 .vtable_empty{
   display: flex;
   align-items: center;
   background-color: aliceblue;
   color: #2c7236;
   font-size: 14px;
   min-height: 64;
   width: 100%;
   box-sizing: border-box;
 }


 .sorts_table_row{
   background-color: bisque;
   cursor: pointer;
 }

  .sorts_table_row:hover{

   transform: scale(1.01);
   box-shadow: 3px 3px 2px rgba(0,0,0,0.5);

 }

 .sorts_table_row[data-disabled="1"]{
   color: #cecece;
 }

 .sorts_table_row[data-disabled="1"]:hover{
   transform: scale(1);
   box-shadow: 0px 0px 0px rgba(0,0,0,0);
 }


 .sorts_table_cell{
   padding: 8px;
 }


 .wide_table{
    width: 100%;
    border-style: none;
 }
 .half_table{
    width: 50%;
    border-style: none;
 }

  .simple_table{
    border-style: none;
    padding: 16px;
 }

 .simple_cell{
    border-style: none;
    padding: 4 64 0 0;
 }

 .seed_table_cell{
   min-height: 24px;
   background-color: antiquewhite;
   font-size: 14px;
   padding: 14px;;
   border-radius: 5px;
   cursor: pointer;
 }

 .seed_table_row{
   background-color: bisque;
   height: 32px;
   font-size: 14px;
   cursor: pointer;
 }

 .seed_table_row:hover{
   background-color: rgb(216, 194, 166);
 }

 /* .vtable tbody tr:nth-child(even){
   background-color: #2c7236;
 } */

 .seed_simple_table_cell{
   min-height: 24px;
   padding: 14px;;
   border-radius: 5px;
 }

 .seed_classes_table_row
 {
   background-color: blanchedalmond;
   font-size: 16px;
   cursor: pointer;
 }

 .seed_classes_table_row:hover{
   background-color: rgb(197, 181, 157);
 }

.seed_classes_table_cell
 {
   padding: 8px;
   border: 1px solid #d1d1d1;
 }


 .click_and_choose_area{
   display: flex;
   align-items: center;
   border-radius: 5px;
   gap: 8px;
   color: #000000;
   background-color: antiquewhite;
   border: 1px solid rgb(156, 156, 156);
   cursor: pointer;
   padding: 8px;
   /* box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5); */
   transition: transform 0.05s ease-in;
 }

 .click_and_choose-side_panel{
   color: #000000;
   background-color: rgb(194, 194, 194);
   border: 1px solid rgb(156, 156, 156);
 }


 .click_and_choose_area::before{
   display: inline;
   content: url("images/click_arrow_24.png");
 }
 .click_and_choose_area:hover{
   transition: transform 0.05s ease-in;
   transform: scale(1.01);
 }


 .container_a{
   background-color: antiquewhite;
   border: 1px solid bisque;
 }

 .round_corners_3x{
   border-radius: 3px;
 }
 .round_corners_5x{
   border-radius: 5px;
 }

 .clickable{
   cursor: pointer;
 }

.add_item_container{
   position: relative;
   left: 32px;
   top: -8px;
   background-color: hsl(71, 51%, 83%);
   font-size: 14px;
   padding: 8px;;
   border: 1px, solid #000000;
   border-radius: 5px;
   box-shadow: 3px 3px 5px rgb(0,0,0,0.5);
   
   cursor: pointer;
 }


 .sort_table_cell{
   min-height: 24px;
   background-color: rgb(221, 200, 173);
   font-size: 14px;
   padding: 10px;;
   border-radius: 5px;
   cursor: pointer;
 }

 .seed_name_field
 {
    border-width: 1px;
    border-color: black;
    border-style: solid;
    border-radius: 5px;
    background-color: lightgray;
    width: 256px;
    min-height: 32px;
    padding: 4px;
    text-align: center;
    cursor: pointer;
 }
 .seed_name_field:hover{
    background-color: gray;
 }


 .screen{
   animation: scaleAnimation 0.25s ease-out forwards;
   position: relative;
    /* width: 50%; */
    width: 50%;
    min-width: 512;
    max-height: 100%;
    background-color: white;
    border-style: solid;
    border-color: black;
    border-width: 1px;
    border-radius: 5px;
    padding: 0px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    
 }
 .generic_content {
    padding: 8px;
    box-sizing: border-box;

    min-height: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
 }

 .v_flexbox{
   display: flex;
   flex-direction: column;
   min-height: 0;
 }

 .bottom_panel{
    width: 90%;
    box-sizing: border-box;
    position: absolute;
    bottom: 16px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    /*background-color: aqua;*/
 }

 .simple_bottom_panel{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    gap: 4px;
    justify-content: flex-end;
 }

 .wide_layout_panel{
   display: flex;
   flex-direction: row;
   justify-content: space-between;
 }


 .delete_textual_button{
   font-size: 12px;
   padding: 2px 10px 2px 10px;
   border: 1px solid gray;
   border-radius: 5px;
   background-color: #cf5858;
   color: white;
 }

 .description_field
 {
   font-family: Verdana, Geneva, Tahoma, sans-serif;
   font-size: 14px;
 }

 .description_field_with_bounds
 {
   font-family: Verdana, Geneva, Tahoma, sans-serif;
   font-size: 14px;
   max-height: 320px;
   min-height: 128px;
   overflow-y: auto;
 }

 .default_items_row{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start ;
    gap: 16px;
 }

  .default_items_row_right{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end ;
    gap: 16px;
 }


 .splitter_v{
   display: flex;
   flex-direction: row;
   align-items: flex-start;
   width: 100%;
 }

 .column_in_splitter_v{
   flex:1;
   min-height: 0;
   display: flex;
   flex-direction: column; 
 }

 .gaps{
   gap: 4px;
 }

 .border_gray{
   border: 1px solid darkgray;
 }


 .shadow{
   box-shadow: 0 8px 16px rgba(0,0,0,0.2);
 }
 
 .column_layout
 {
   display: flexbox;
 }

 .space_above{
   margin-top: 16px;
 }

 .add_seed_window{
   height: 320px;
   margin-bottom: 64px;
 }

 .plant_side_panel{
   border-style: solid;
   border-color: black;
   border-width: 1px;
   border-radius: 5px;
   width: 456px;
   height: 100%;
   /* background: linear-gradient(rgb(196, 196, 196), rgb(248, 248, 248)); */
   background: linear-gradient(rgb(79, 124, 79), rgb(51, 77, 51));
   color: #eeeeee;
   padding: 8px;
 }

 .plant_side_panel_header{
   font-size: 24px;
   background-color: rgb(62, 94, 59);
   padding: 8px;
   border-top-left-radius: 5px;
   border-top-right-radius: 5px;
 }

 .plant_side_panel_table
 {
   width: 100%;
   border: 1px none gray;
   border-radius: 3px;
   border-spacing: 1px;
 }
 .plant_side_table_header
 {
   background: #000000;
   color: #eeeeee;
   font-size: 14px;
   font-weight: normal;
 }

 .plant_side_panel_button
 {
   background: #0c5f17;
   color: white;
   border: 1px solid rgb(133, 133, 133);
   border-radius: 3px;
   padding: 8px;
 }

 .plant_side_panel_button:hover{
   background: #2c7236;
 }
 .plant_side_panel_button:active{
   background: #143319;
 }

 .plant_side_panel_selection_section
 {
   font-size: 12px;
   padding: 4px;
   background-color: #18381d; 
   border-radius: 5px;
 }

 .plant_item{
   background-color: rgb(44, 68, 53);
   color: #eeeeee;   
   border-radius: 2px;
   padding: 4px;
   font-size: 14px;   
   cursor: pointer;
 }

.plant_item_selected{
   background-color: rgb(104, 161, 126);
   color: #eeeeee;   
   border-radius: 2px;
   padding: 4px;
   font-size: 14px;   
   cursor: pointer;
 }

 .grid-table_2c {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1px;
    /* background-color: #ccc; */
 }
 .grid-table_2c > div {
  /* background: white; */
  padding: 4px;
}

.grid_table_2c_dense
{
   display: grid;
   grid-template-columns: auto 1fr;
   row-gap: 4px;
   column-gap: 16px;
}


.message_box_body
{
   padding: 16px;
   margin-bottom: 32px;
   color: #000000;
}
.message_box_header{
   background: linear-gradient(to right, blueviolet, rgb(104, 30, 173));
   background-color: blueviolet;
   color: white;
   border-bottom-style: solid;
   border-bottom-width: 1px;
   border-bottom-color: white;
   border-top-left-radius: 5px;
   border-top-right-radius: 5px;
   height: 16px;
   padding: 8px 16px;
   font-weight: bold;
   font-size: 14px;
}

.filter_row{
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: flex-end;
   gap: 4px;
   font-size: 12px;
}

.header_padding_adust{
   padding: 0px 0px 16px 0px;
}
.no_padding{
   padding: 0px;
}

.padding_2px{
   padding: 2px;
}

.padding_4px{
   padding: 4px;
}

.padding_8px{
   padding: 8px;
}


.centered{
   margin: 0px auto;
}

.journal_body
{
   display: flex;
   flex-direction: column;
   flex: 1;
   width: 80%;
   background: linear-gradient(#ffffff, #dfdfdf);
  
}

.journal_details_container{
   /* animation: scaleAnimation 1s ease; */
}

.journal_alias_title{

}

.journal_alias_name{
   font-weight: bold;   
}

.jouornal_seed_name{
   font-size: 18px;
   font-weight: bold;
   padding-top: 16px;
}

.journal_event_row_button{
   background-color: antiquewhite;
   border: 1px solid gray;

   border-radius: 5px;
   padding: 2px;
   text-align: center;
   color: #000000;
   min-width: 32px;
   cursor: pointer;
}
.journal_event_row_button:hover{
   background-color: rgb(224, 211, 193);
}
.journal_event_row_button:active{
   background-color: rgb(177, 166, 151);
}


.journal_filter_container{
   display: flex;
   border: 1px solid darkgray;
   border-radius: 3px;
   padding: 4px;
}

.journal_filter_label
{
   font-size: 12px;
   align-content: center;
   justify-content: center;
   padding: 2px 0 2px 0;
}
.journal_filter_column
{
   display: inline;
}

.filter_button_widget{
   display: flex;
   align-items: center;
   justify-content: space-between;
   min-width: 92px;
   max-width: 256px;
   padding: 4px 8px 4px 8px;
   border: 1px solid darkgray;
   background-color: #6fc3dd;
   border-radius: 5px;
   gap: 8px;
   box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
   cursor: pointer;
}
.filter_button_widget[data-id-empty="0"]{
   box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
   background-color:#d1d1d1;
}

.filter_button_widget[data-id-empty="1"]{
   box-shadow: 0 0 0 rgba(0, 0, 0, 1);
   background-color:#d1d1d1;
}


.filter_button_widget:hover{
   background-color:#58a1b8;
}


.filter_button_widget:active{
   background-color: #2c7236;
}

.filter_button_text
{
   min-height: 19px;
}

.filted_clear_button
{
   display: inline-block;
   font-weight: normal;
}
.filted_clear_button:hover
{
   font-weight: bold;   
   transform: scale(1.5);
}

.time_elapsed_container
{
   font-size: 14px;
   color: rgb(41, 41, 41);
   padding-right: 16px;
   align-content: center;
}

.event_blank_edit_area{
   /* background-color: #fcf2e6; */
   background: linear-gradient(#ffeeda, #fffcf9);
   border-radius: 5px;
   border: 1px solid black;
   padding: 8px;
}
.event_blank_edit_area_section{
   /* background-color: antiquewhite; */
   /* border: 1px solid bisque; */
   border: 1px solid rgb(138, 127, 114);
   border-radius: 3px;
   padding: 8px;
}


.note_title{
   font-size: 12px;
   color: rgb(75, 75, 75);
}

.table_row_selection{
   background-color: blue;
   color: #eeeeee;
   font-weight: bold;
}

.table_row_selection:hover{
   background-color: blue;
   color: #ffffff;
   font-weight: bold;
}

.margin_top_1
{
   margin-top: 5px;
}

.flex_column
 {
   display: flex;
   flex-direction: column;
   min-height: 0px;
 }

 .flex_row
 {
   display: flex;
   flex-direction: row;
 }

.flex_item
{
   flex: 1;
}

.full_width{
   width: 100%;
}

.wide_width
{
   width: 90%;
   max-width: 1000px;
}


.hidden {
    display: none;
}

.transparent_color
{
   background: transparent;
}

.screen_full{
   width: 80%;
   min-height: 80%;
}

.slide_animation{
   animation: slideIn 0.25s ease-out forwards;
}

.smooth_appears{
   animation: smooth_appears 0.5s ease-out forwards;
}

.minheight_0{
   min-height: 0;
}

