/* Apply background image and ensure it covers the entire viewport */
body {
    position:relative;
    margin: 0;
    padding-top: 40px;
    background: #fff;
}

/* Style for the dashboard content */
.dashboard {
    position: relative; /* Make sure it is above any background layers */
    width: 85%;
    min-height: 690px;
    margin: auto;
    margin-left: 220px;
    background: #fff;
    padding: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    z-index: 1; /* Ensure it is above the background image */
    font-family: "Montserrat", Helvetica;
    
    display: flex;
    flex-direction: column; /* Stack child elements vertically */
}


/* Navigation styling */
nav ul {
    list-style-type: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin-right: 15px;
}
nav ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
}

/* Content styling */
.content {
    margin-top: 20px;
}

/* Global Header Styles */
.global-header {
    position:relative;
    background-color: #131921; /* Dark background color */
    color: #fff; /* White text color */
    padding: 10px 0;
    position: fixed;
    width: 100%;
    margin-bottom:10px;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensure header is above other content */
}

.global-header .container {
    max-width: 1200px; /* Adjust as necessary */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensures space is managed between items */
}

header.global-header {
    background: #131921;
}

.global-header .logo {
    flex: 0 0 auto; /* Prevent the logo from stretching */
}

.logo img {
    max-width: 140px;
}

/* Optional: Add padding to the body to prevent content from being hidden behind the fixed header */
body {
    padding-top: 60px; /* Adjust based on the header height */
}
/* Global Footer Styles */
.global-footer {
    background-color: #131921; /* Dark background color */
    color: #fff; /* White text color */
    padding: 20px 0;
    position: relative;
    width: 100%;
    bottom: 0;
    z-index:3;
}

.global-footer .container {
    max-width: 1200px; /* Adjust as necessary */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    width:100%;
    justify-content: center; /* Center align content horizontally */
    align-items: center; /* Center align content vertically */
    text-align: center; /* Center text inside footer content */
}

.global-footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.global-footer .footer-content p {
    margin: 0;
    font-size: 14px;
}

.global-footer nav ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    gap: 15px;
}

.global-footer nav ul li {
    display: inline;
}

.global-footer nav ul li a {
    text-decoration: none;
    color: #fff; /* White text color */
    font-weight: bold;
}

.global-footer nav ul li a:hover {
    text-decoration: underline;
}

/* Basic reset and box-sizing */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.dashboard {
    display: flex;
}

.sidebar {
    width: 180px;
    background-color: #131921;
    margin-top: 70px;
    padding-top: 25px;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
}

.sidebar .button {
    display: block;
    background-color: #131921;
    color: #fff;
    padding: 10px;
    margin-bottom: 1px;
    text-align: center;
    text-decoration: none;
    border-radius: 0px;
    transition: background-color 0.3s;
    width: 100%;
}

.sidebar .button:hover {
    background-color: #131619;
}

.content{
    position: relative;
    padding-top:15px;
    width:75%;
    justify-content: left; /* Center align content horizontally */
    align-items: left; /* Center align content vertically */
    text-align: left; /* Center text inside footer content */ 
}

.content-seller-page {
    position: relative;
    text-align: left; /* Align text to the left inside the box */
    width: 80%; /* Set width to 80% of the container */
    max-width: 1200px; /* Set a maximum width for larger screens */
    padding: 45px 60px; /* Add padding inside the box */
    min-height: 690px; /* Ensure the box has a minimum height */
    margin: 30px auto; /* Center the box horizontally with vertical margin */
    background-color: #ffffff; /* Set a background color for the box */
    border: 1px solid #e0e0e0; /* Add a border with a light color */
    border-radius: 8px; /* Round the corners of the box */
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0); /* Add a subtle shadow for depth */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.button-container {
    text-align: center; /* Center the button container */
    margin-top: 30px; /* Add space above the button */
}

.button {
    display: inline-block; /* Ensure button is inline-block */
    padding: 10px 20px; /* Add padding inside the button */
    font-size: 16px; /* Set font size for the button text */
    color: #ffffff; /* Set text color */
    background-color: #007bff; /* Set background color */
    border: none; /* Remove default border */
    border-radius: 5px; /* Round the corners */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s ease; /* Smooth transition for background color */
}

.button:hover {
    background-color: #0056b3; /* Change background color on hover */
}

