body {
  background: #FFF5CC;
  color: #6e0000;
  margin-top: 5rem;
}
.navbar-right {
    margin-left: auto;
}

h1, h2, h3, h4, h5, h6 {
  color: #6e0000;
}

.bg-steel {
  background-color: #6e0000;
}

.container {
  color: #6e0000;
}
.site-header .navbar-nav .nav-link {
  color: #e5c66a;
}

.site-header .navbar-nav .nav-link:hover {
  color: #e5c66a;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

.content-section {
  background: #e5c66a;
  padding: 10px 20px;
  border: 1px solid #6e0000;
  border-radius: 3px;
  margin-bottom: 20px;
  color: #6e0000;
}

.article-title {
  color: #6e0000;
}

.list-group {
  color: #6e0000;

}

.list-group-item{
  color: #6e0000;
}

a.article-title:hover {
  color: #428bca;
  text-decoration: none;
}

.article-content {
  white-space: pre-line;
    color: #6e0000;
}

.article-img {
  height: 65px;
  width: 65px;
  margin-right: 16px;
}

.article-metadata {
  padding-bottom: 1px;
  margin-bottom: 4px;
  border-bottom: 1px solid #6e0000
}

.article-metadata a:hover {
  color: #333;
  text-decoration: none;
}

.article-svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.account-img {
  height: 125px;
  width: 125px;
  margin-right: 20px;
  margin-bottom: 16px;
}

.account-heading {
  font-size: 2.5rem;
}

.customer-container {
    width: 100%;
}

.row {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.column {
    width: 24%;
    padding: 5px;
    box-sizing: border-box;
}
.customer-section {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
}

.customer-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.customer-table th, .customer-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.customer-table tr:hover {
    background-color: #f5f5f5;
}

.customer-table th {
    background-color: #4a90e2;
    color: white;
}

h2 {
    color: #4a90e2;
}
.customer-table {
    width: 100%;
    border-collapse: collapse;
}

.customer-table th, .customer-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.customer-table tr:nth-child(even) {
    background-color: #f0f0f0;
}

.customer-table th {
    background-color: #6e0000;
    color: white;
}

h2 {
    color: #6e0000;
}
.separator {
    height: 35px; /* Adjust thickness as desired */
    background-color: #6e0000 ; /* Color of the separator */
    /*margin: 20px 0; !* Add some margin to space it out from the surrounding elements *!*/
}
.order-notes {
    width: 25%;
}

.glowing-text {
  font-weight: bold; /* Making the text bolder */
  font-size: 1.2em;  /* Increasing the font size */
  color: inherit;    /* Keeping the same color */
  text-shadow: 0 0 10px #FFBF00, /* Adding amberish yellow glow */
               0 0 20px #FFBF00,
               0 0 30px #FFBF00,
               0 0 40px #FFBF00;
}

.full-width-button {
    width: 100%;
    padding: 10px; /* You can adjust the padding as needed */
    background-color: #e5c66a ; /* You can choose your preferred background color */
    color: #6e0000; /* Text color */
    border: none;
    cursor: pointer;
    text-align: center;
    font-weight: bold; /* Making the text bolder */
    font-size: 1.2em;  /* Increasing the font size */
}

.full-width-button:hover {
    background-color: #0056b3; /* Hover effect background color */
}

.courier-table-style {
            width: 100%;
            text-align: center;
            border-collapse: collapse;
            border: 2px solid #89001c;
            background-color: #f9f3f3; /* A soft background color */
            margin-bottom: 20px; /* Space buffer between tables */
        }

.courier-table-style td {
    padding: 10px; /* Adding some padding for better appearance */
    font-size: 1.2em; /* Increased font size */
    font-weight: bold; /* Boldness */
    color: #89001c; /* Text color */
}