h1 {
    font-family: Sans;
    font-size: 27;
    margin: 30px 0 50px 0;
    text-align: center;
}

h3{
    font-family: Sans;
}

#div-1 {
    display: flex;
    margin: 50px 50px 50px 50px;
    justify-content: space-between;
}

#dataframe {
    margin: 50px 0 70px 0;
    display: block
}

#dataframe table {
    margin: auto;
}


/* TICKER PANEL */
.ticker-panel {
    display: flex;
    flex-direction: column;
    height: 450px;
    margin: 0 30px 0 30px
}

.ticker-list {
    overflow-y: auto;
}

.ticker-list ul {
    /* Remove default list styling */
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.ticker-list li a {
    border: 1px solid #ddd; /* Add a border to all links */
    margin-top: -1px; /* Prevent double borders */
    background-color: #f6f6f6; /* Grey background color */
    padding: 12px; /* Add some padding */
    text-decoration: none; /* Remove default text underline */
    font-size: 18px; /* Increase the font-size */
    color: black; /* Add a black text color */
    display: block; /* Make it into a block element to fill the whole list */
    outline: none; /* Remove click outline */
}

.ticker-list li .remove-icon {
    cursor: pointer;
    float: right;
}

#ticker-portfolio {
    display: flex
    flex-flow: column;
}

#ticker-portfolio p {
    font-family: sans;
    font-size: 16px;
    color: #999;
}

#ticker-drop {
    border-width: 1px;
    border-style: solid;
    border-color: #ddd;
    flex-grow: 1;
}

/* PLOT PANEL */
#plot-panel #plot-scale-buttons {
    text-align: center;
}

#plot-panel #plot-scale input {
    display: none;
}

#plot-panel #plot {
    height: 400px;
    width: 600px;
}

#plot-panel #plot p {
    line-height: 400px;
    font-family: sans;
    font-style: italic;
    font-size: 18px;
    text-align: center;
}


/* BUTTONS */
.button {
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
	background-color:#ffffff;
	border-radius:6px;
	border:1px solid #dcdcdc;
	display:inline-block;
	cursor:pointer;
	color:#666666;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	outline : none;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
}

.button:hover {
	background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
	background-color:#f6f6f6;
}

.button:active {
	position:relative;
	top:1px;
}

/* Checked "radio" buttons */
input[type=radio]:checked + .button {
    background: linear-gradient(to bottom, #cfcfcf 5%, #ffffff 100%);
    box-shadow: none;
}

input[type=radio]:checked + .button:hover {
    background: linear-gradient(to bottom, #cfcfcf 5%, #f8f8f8 100%);
    box-shadow: none;
}


/* TABLES */
table {
  color: #333;
  font-family: Helvetica, Arial, sans-serif;
  /* Table reset stuff */
  border-collapse: collapse; border-spacing: 0;
  margin: auto;
}

td, th {  border: 0 none; height: 30px; }

th {
  /* Gradient Background */
	background: linear-gradient(#333 0%,#444 100%);
	color: #FFF; font-weight: bold;
	height: 40px;
}

td {
    background: #FAFAFA;
	padding-left: 10px;
	padding-right: 10px;
    text-align: center;
}

/* Zebra Stripe Rows */

tr:nth-child(even) td { background: #EEE; }
tr:nth-child(odd) td { background: #FDFDFD; }

/* First-child bold italic text! */
tr td:first-child, tr th:first-child {
	font-style: italic;
	font-weight: bold;
	font-size: 14px;
	/* text-align: right; */
	padding-left: 10px;
	padding-right: 10px;
	width: 80px;
}

/* Add border-radius to specific cells! */
tr:first-child th:nth-child(1) {
  border-radius: 5px 0 0 0;
}

tr:first-child th:last-child {
  border-radius: 0 5px 0 0;
}
