.main-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#myGrid {
  flex: 1 1 0px;
  width: 100%;
}

.global-search {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
}

.header-logo {
    float: left;
    height: 30px;
    width: 30px;
}

.table-header {
    display: flex;
    flex-direction: row;   
}

.table-footer {
    display: flex;
    font-size: 90%;
    padding: 5px 10px;
    text-align: center;
    justify-content: space-around;
}

.table-footer a {
    color: #853800;
    text-decoration: none;
}

.table-footer a:hover {
    text-decoration: underline;
}


/*Styles for external filters start*/ 

.row-name
{
    padding: 0px 10px;
}

.external-filters {
    display:flex;
    padding: 3px 0;
    align-items: center;
    flex-wrap: wrap;
}
.external-filter-btn {
	display: inline-block;
	margin-right: 3px;
	padding-bottom: 3px;
}
.external-filter-btn input[type=radio] {
	display: none;
}
.external-filter-btn label {
	display: inline-block;
	cursor: pointer;
	padding: 0px 15px;
	line-height: 20px;
	border: 1px solid #999;
	border-radius: 6px;
	user-select: none;
	width: 100px;
	text-align: center;
}
 
/* Checked */
.external-filter-btn input[type=radio]:checked + label {
	background: #f0d29c;
}
 
/* Hover */
.external-filter-btn label:hover {
	color: #666;
	background: #f0d29c;
}
 
/* Disabled */
.external-filter-btn input[type=radio]:disabled + label {
	background: #efefef;
	color: #666;
}
/*Styles for external filters end*/ 

/*Styles for accordion*/

.accordion{
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background-color: #f8f8f8;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
    font-size: 13px;
}

.accordion__label{
    padding: 14px 20px;
}

.accordion__content{
    padding: 0px 20px;
}

.accordion__label{
    display: block;
    color: black;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: background-color 0.1s;
}

.accordion__label:hover{
    background-color: rgba(0, 0, 0, 0.1);
}

.accordion__content{
    background: white;
    display: none;
}

.accordion__input{
    display: none;
}

.accordion__input:checked ~ .accordion__content{
    display: block;
}

.row-name
{
    background: #f8f8f8;
    border: 1px solid #babfc7;
    font-weight: 700;
}

.filter-row-container
{
    margin-bottom: 5px;   
}

/*Styles for cells containing links*/
.ag-cell a
{
    display: block;
    color: #bb4f00;
    text-decoration: none;
}

.ag-cell a:hover
{
    text-decoration: underline;
}

.ag-cell 
{
    padding-top: 3px;
}

.title-logo-image
{
 width: 100%;   
}

/*Making the table more compact*/
.ag-theme-alpine .ag-cell, .ag-theme-alpine .ag-full-width-row .ag-cell-wrapper.ag-row-group {
 padding-right: 0 !important;   
}

/*Making filter button more compact*/
.ag-theme-alpine .ag-ltr .ag-floating-filter-button, .ag-theme-alpine .ag-rtl .ag-header-select-all
{
 margin-left: 0 !important;   
}

/*Add row styles for grades, using box-shadow for inner border*/
.released-green
{
    box-shadow: 6px 0px 0px 0px #4CAF50 inset !important;
}

.ea-orange
{
    box-shadow: 6px 0px 0px 0px #FFC107 inset !important;
}

.in-dev-red
{
    box-shadow: 6px 0px 0px 0px #F44336 inset !important;
}

.cancelled-black
{
    box-shadow: 6px 0px 0px 0px #000000 inset !important;
}