@font-face {
    font-family: EastMarket;
    src: url(assets/fonts/EastMarket.ttf);
}
@font-face {
    font-family: Roboto;
    src: url(assets/fonts/Roboto-Regular.ttf);
}
body{
    background-color: #EFE2BA;
    font-family: Roboto;
}
nav{
    font-family: EastMarket;
    font-weight: bold;
}
nav ul li{
    margin-left: 0.5em;
}
footer{
    text-align: right;
}
/* Business Name in Header */
#businessName{
    font-family: EastMarket;
    margin-right: 0.5em;
}
/* Business Style */
#businessImage{
    border: 4px solid #4056A1;
    border-radius: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
#businessText{
    margin-top: 1em;
}
/* Featured Style */
#featuredHeader{
    font-family: EastMarket;
}
#featuredImage{
    border: 4px solid #4056A1;
    border-radius: 16px;
}
#featuredText{
    margin-top: 1em;
}
/* Social Style */
#socialHeader{
    font-family: EastMarket;
}
#socialText{
    margin-top: 1em;
}
#socialImage{
    border: 4px solid #4056A1;
    border-radius: 16px;
}
/* Type Style */
.typeHeader{
    color: #F13C20;
    font-family: EastMarket;
    margin-bottom: 0;
}
/* Story Style */
#storyImage{
    border: 4px solid #4056A1;
    border-radius: 16px;
}
#missionImage{
    border: 4px solid #4056A1;
    border-radius: 16px;
}
/* Login Style */
#loginImage{
    max-width: 200px;
}
/* Registration Form */
.registration-form{
    display: block;
}
.success-message {
    color: green;
    font-size: 18px;
    text-align: center;
    padding: 20px;
    border-radius: 1rem;
    background-color: #212529;
    border: 2px solid green;
}
.error-message {
    color: red;
    font-size: 18px;
    margin-top: 20px;
    text-align: center;
}
.form-container, .success-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}
/* Cart Style */
table {
    width: 80%;
    margin-bottom: 1rem;
    background-color: #f9f9f9;
    border-collapse: collapse;
}

thead {
    background-color: #4056A1;
    color: white;
}

th, td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #f1f1f1;
    color: black;
}

.btn-danger {
    padding: 5px 15px;
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #c82333;
}

.form-control {
    border-radius: 5px;
}

.table td, .table th {
    vertical-align: middle;
}
/* Order History Table Style */
.order-row {
    cursor: pointer;
}
.order-items {
    display: none;
    background-color: #f8f9fa;
    color: #000;
    transition: all 0.3s ease-in-out;
}
.order-items ul {
    list-style-type: none;
    padding: 0;
}
.order-items li {
    padding: 5px;
    border-bottom: 1px solid #ddd;
}