@charset "utf-8";

body, html {
    height: 100vh; 
    margin: 0; 
    overflow: auto; 
	justify-content: center;
	font-family: "Montserrat";
}

.profilepage{
	max-width: 100%;
	padding: 0 0.5em;
}

#slide-container {
  position: absolute;
  background-color: white;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%); /* Start offscreen to the right */
  z-index: 10000; /* Layer it on top of the current page */
  display: none; /* Initially hidden */
  transition: transform 0.5s ease-in-out; /* Ensure smooth transition */
}

.montserrat {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.top{
	width: 100%;
}

/* ALL ORDERS SECTION */

.allorders {
    display: flex;
    flex-direction: column;
	padding: 1em;
    border: 0.0625em solid #A4A4A4;
    border-radius: 1em;
	margin-top: 1em;
}

.text-allorders {
    font-weight: 700;
    font-size: 1.2em;
	margin: 0;
	margin-bottom: 0.75em;
}

.order-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.order-item {
    display: flex;
    align-items: center;
    gap: 0.625em;
}

.order-item img {
    width: 1.5em;
    height: 1.5em;
}

.order-item p {
    font-size: 1em;
    font-weight: 500;
    text-decoration: underline;
    margin: 0;
}

.orderhistorytext {
    font-size: 1em;
    font-weight: 500;
    text-decoration: underline;
    margin: 0;
	color: black;
}

.divider {
    height: 1.5em;
    width: 0.0625em;
    background-color: #A4A4A4;
}


/* My Information*/
.myinfo{
	font-weight: 800;
	font-size: 1.3em;
	padding-left: 0.5em;
}

.savedaddresses {
    border-radius: 0.75em;
	padding: 1em;
    border: 0.0625em solid #A4A4A4;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.saved-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.saved-title {
    font-weight: 700;
    font-size: 1.2em;
    margin: 0;
}

.add-btn {
    width: 2em;
    cursor: pointer;
}

.addresses {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.address-item {
    font-size: 1em;
    margin: 0;
	font-weight: 500;
}

hr {
    border: 0;
    border-top: 0.0625em solid #A4A4A4;
    margin: 0;
}

.personalshoppingnotes{
	margin-top: 1em;
	border-radius: 0.75em;
	padding: 1em;
    border: 0.0625em solid #A4A4A4;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

/* Support */
.support{
	font-weight: 800;
	font-size: 1.3em;
	padding-left: 0.5em;
}

.support-section {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    font-family: Arial, sans-serif;
	margin-bottom: 7em;
}

.support-item {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space out items */
    gap: 1em;
}

.support-icon {
    width: 1.5em;
    height: 1.5em;
	padding-left: 0.5em;
}

.support-title {
    font-weight: 400;
    font-size: 1em;
    margin: 0;
    flex-grow: 1; /* Push the title to the left */
}

.support-detail {
    font-size: 0.875em;
	font-weight: 500;
    color: #A4A4A4;
    margin: 0;
    text-align: right; /* Align text to the right */
	text-decoration: none;
}

.support-arrow {
    width: 0.75em;
    height: 0.75em;
}


.support-arrow {
    margin-left: auto;
    width: 0.75em;
    height: 0.75em;
}




/* Navigation Bar */
.bottom-navbar {
    position: fixed; /* Fixed at the bottom */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF; /* White background */
    display: flex; /* Flexbox for even spacing */
    justify-content: space-around; /* Space between icons */
    align-items: center; /* Center icons vertically */
    padding: 0.5em 0;
    box-shadow: 0 -0.125em 0.25em rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    z-index: 999; /* Ensure it's on top */
}

.nav-item {
    display: flex;
    flex-direction: column; /* Stack icon and label vertically */
    align-items: center; /* Center align icon and label */
    cursor: pointer; /* Make clickable */
}

.nav-icon {
    width: 4em; /* Adjust size of icons */
}