/* --- DESKTOP STYLES --- */
body {
     background-color: moccasin;
}

.FixedMenuBar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20; /* force menu bar to stay on top */
}

.TopTitle {
    text-align: center;
    font-size: 200%;
    background-color: saddlebrown;
    color: yellow;
    width: 100%;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: saddlebrown;
    color: black;
}

li {
    float: left;
}

li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
    background-color: green;
    color: yellow;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 80px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    overflow: scroll;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {background-color: lightgray}

.dropdown:hover .dropdown-content {
    display: block;
}

.spacerbox {
    height: 80px;
    width: 300px;
    margin: auto;
    background-color: moccasin;
}

.CenteredHeader {
    font-size: 200%;
    text-align: center;
    margin: auto;
    width:45%;
    /*border : 2px ridge #e8a317;*/
}

.landscapeimage {
    display: block;
    margin: auto;
    width: 50%;
    max-width: 800px;
}

.portraitimage {
    display: block;
    margin: auto;
    height: 400px;
}

.CDimage {
    display: block;
    margin: auto;
    height: 350px;
}

.LesCDimage {
    display: inline;
    margin: auto;
    height: 350px;
}

.propinquity-img {
  max-width: 100%; /* image can only be as wide as container, if container shrinks, image shrinks */
  height: auto; /* recalculate vertical scale dynamically so im doesn't distort */
  display: block; /* Removes unnecessary bottom whitespace */
  vertical-align: top;
  padding-top: 20px;
}

.Centered {
    margin: auto;
    width:45%;
}

.ViewCart {
    margin: auto;
    width:45%;
}

.Text1 {
    margin: auto;
    width: 80%;
    max-width: 800px;
}

.ReallyLargeFont {
font-size : 200%;
font-weight : bold;
}

.PerformanceTable {
width : 60%;
border : 2px ridge #e8a317;
margin : auto;
margin-top : 10px;
font-family : Arial, Verdana, sans-serif;
font-size : 90%;
font-weight : normal;
}
.PerformanceTable td {
padding : 10px 0px 10px 10px;
border : 2px ridge #e8a317;
vertical-align : middle;
}
.PerformanceTable a:link {
/*background-color : #ffcc33; /* yellow background */
color : #996633; /* brown text */
text-decoration : underline;
}
.PerformanceTable a:visited {
background-color : #ffcc33; /* yellow background */
color : #a0522d; /*#a0522d brown text*/
text-decoration : underline;
}
.PerformanceTable a:hover {
background-color : green; /* green background */
color : #ffff00; /* yellow text */
}

.MediumLargeCenter {
    margin: auto;
    font-size: 180%;
    font-weight: bold;
}


/*  Ordering Table Specs  */
  .order-table {
    margin: auto;
    table-layout: fixed; /* Forces strict compliance with column widths */
    width: 50%;        /* Set total width of the table */
    border-collapse: collapse;
  }
  .order-table th, .order-table td {
    /*  border: 1px solid #ccc;  */
    overflow: hidden;    /* Optional: prevents content from stretching cells */
    text-overflow: ellipsis; 
    white-space: normal;
  }


.OrderingInfo {
    margin: auto;
    width:45%;
    text-align: center;
    font-size: 160%;
    font-weight: bold;
}

/*  Ordering from Bandcamp button  */
.btn {
  background-color: saddlebrown;
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  font-weight: bold;
}

.btn:hover {
  background-color: green;
}

.ViewCart {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
  height: 42px;           /* Requires a height to see vertical centering */
  /*border: 1px solid #ccc; */
}

.CenteredText {
    text-align: center;
}

.Bold {
    font-weight : bold;
}

.Italic {
    font-style : italic;
}

.td {
    border : 2px ridge #e8a317;
}

.cd_text {
    display: block;
    text-align: left;
    font-family: "Times New Roman", Garamond, Helvetica, sans-serif;
    font-size: 120%;
    white-space: normal;
}

.cd_title {
    display: block;
    text-align: left;
    font-family: "Times New Roman", Garamond, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    white-space: normal;
}

@media only screen and (min-width: 1024px) {
  /* Your desktop styles */
}

/*  ****************************************************************** */

/* --- MOBILE STYLES --- */
body {
     background-color: moccasin;
}

.spacerbox {
    height: 80px;
    width: 300px;
    margin: auto;
    background-color: moccasin;
}

.TopTitle {
    text-align: center;
    font-size: 150%;
    background-color: saddlebrown;
    color: yellow;
    width: 100%;
}

.FixedMenuBar {
    position: fixed;
    top: 0;
    width: 100%;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: saddlebrown;
    color: black;
}

li {
    float: left;
}

li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
    background-color: green;
    color: yellow;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 80px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    overflow: scroll;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {background-color: lightgray}

.dropdown:hover .dropdown-content {
    display: block;
}

.landscapeimage {
    display: block;
    margin: auto;
    width: 50%;
    max-width: 800px;
}

.portraitimage {
    display: block;
    margin: auto;
    height: 400px;
}

.CDimage {
    display: block;
    margin: auto;
    height: 350px;
}

.LesCDimage {
    display: inline;
    margin: auto;
    height: 350px;
}

.Centered {
    margin: auto;
    width:45%;
}

.CenteredHeader {
    font-size: 100%;
    text-align: center;
    margin: auto;
    width:80%;
    /*border : 2px ridge red;*/
}

.Text1 {
    margin: auto;
    width: 80%;
    max-width: 800px;
}

.ReallyLargeFont {
font-size : 200%;
font-weight : bold;
}

.PerformanceTable {
width : 60%;
border : 2px ridge #e8a317;
margin : auto;
margin-top : 10px;
font-family : Arial, Verdana, sans-serif;
font-size : 90%;
font-weight : normal;
}
.PerformanceTable td {
padding : 10px 0px 10px 10px;
border : 2px ridge #e8a317;
vertical-align : middle;
}
.PerformanceTable a:link {
/*background-color : #ffcc33; /* yellow background */
color : #996633; /* brown text */
text-decoration : underline;
}
.PerformanceTable a:visited {
background-color : #ffcc33; /* yellow background */
color : #a0522d; /*#a0522d brown text*/
text-decoration : underline;
}
.PerformanceTable a:hover {
background-color : green; /* green background */
color : #ffff00; /* yellow text */
}

.MediumLargeCenter {
    font-size : 180%;
    font-weight : bold;
    margin: auto;
}

.OrderingInfo {
    margin: auto;
    width:45%;
    text-align: center;
    font-size: 160%;
    font-weight: bold;
}

.CenteredText {
    text-align: center;
}

.Bold {
    font-weight : bold;
}

.Italic {
    font-style : italic;
}

@media only screen and (max-width: 480px) {
  /* Your mobile styles */
}

/*  ****************************************************************** */

/* --- TABLET STYLES --- */
body {
     background-color: moccasin;
}

.spacerbox {
    height: 80px;
    width: 300px;
    margin: auto;
    background-color: moccasin;
}

.TopTitle {
    text-align: center;
    font-size: 150%;
    background-color: saddlebrown;
    color: yellow;
    width: 100%;
}

.FixedMenuBar {
    position: fixed;
    top: 0;
    width: 100%;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: saddlebrown;
    color: black;
}

li {
    float: left;
}

li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
    background-color: green;
    color: yellow;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 80px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    overflow: scroll;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {background-color: lightgray}

.dropdown:hover .dropdown-content {
    display: block;
}

.landscapeimage {
    display: block;
    margin: auto;
    width: 50%;
    max-width: 800px;
}

.portraitimage {
    display: block;
    margin: auto;
    height: 400px;
}

.CDimage {
    display: block;
    margin: auto;
    height: 350px;
}

.LesCDimage {
    display: inline;
    margin: auto;
    height: 350px;
}

.Centered {
    margin: auto;
    width:45%;
}

.CenteredHeader {
    font-size: 160%;
    text-align: center;
    margin: auto;
    width: 80%;
    /*border : 2px ridge blue;*/
}

.Text1 {
    margin: auto;
    width: 80%;
    max-width: 800px;
}

.ReallyLargeFont {
font-size : 200%;
font-weight : bold;
}

.PerformanceTable {
width : 60%;
border : 2px ridge #e8a317;
margin : auto;
margin-top : 10px;
font-family : Arial, Verdana, sans-serif;
font-size : 90%;
font-weight : normal;
}
.PerformanceTable td {
padding : 10px 0px 10px 10px;
border : 2px ridge #e8a317;
vertical-align : middle;
}
.PerformanceTable a:link {
/*background-color : #ffcc33; /* yellow background */
color : #996633; /* brown text */
text-decoration : underline;
}
.PerformanceTable a:visited {
background-color : #ffcc33; /* yellow background */
color : #a0522d; /*#a0522d brown text*/
text-decoration : underline;
}
.PerformanceTable a:hover {
background-color : green; /* green background */
color : #ffff00; /* yellow text */
}

.MediumLargeCenter {
    font-size : 180%;
    font-weight : bold;
    margin: auto;
}

.OrderingInfo {
    margin: auto;
    width:45%;
    text-align: center;
    font-size: 160%;
    font-weight: bold;
}

.CenteredText {
    text-align: center;
}

.Bold {
    font-weight : bold;
}

.Italic {
    font-style : italic;
}

@media only screen and (min-width: 481px) and (max-width: 1023px) {
  /* Your tablet styles */
}

