body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
}

h1, h2, h3 {
    margin-bottom: 15px;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #dddddd;
}

th, td {
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

button, a.button-style {
    background-color: #ff6666;
    border: none;
    color: white;
    padding: 8px 16px;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    line-height: normal; /* Override default line-height of anchor tag */
    box-sizing: border-box; /* To include padding and border in element's total width and height */
	transition: 0.6s;
}

button:hover, a.button-style:hover {
    background-color: #ff0f0f;
    color: white;   /* This keeps the text color the same on hover */
    text-decoration: none;   /* This removes the underline on hover */
	transition: 0.6s;
}

	a.button-style-front {
    background-color: #ff6666;
    border: none;
    color: white;
    padding: 20px 16px;
    text-align: center;
    display: block; /* Updated to block to make the button take full width */
    font-size: 20px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    line-height: normal; /* Override default line-height of anchor tag */
    box-sizing: border-box; /* To include padding and border in element's total width and height */
    transition: 0.6s;
    width: 40%; /* Set the width to 100% to make it full width */
	
}

a.button-style-front:hover {
    background-color: #ff0f0f;
    color: white;   /* This keeps the text color the same on hover */
    text-decoration: none;   /* This removes the underline on hover */
    transition: 0.6s;
	
}


a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

input[type=text], select {
    width: 100%;
    padding: 8px 16px;
    margin: 4px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

form {
    margin-bottom: 20px;
}
/* Add the following to styles.css */
.admin-login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #ffffff;
}

.admin-login .login-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-login input[type="text"],
.admin-login input[type="password"] {
    width: 100%;
}

.admin-login button[type="submit"] {
    cursor: pointer;
}

.admin-login .error {
    color: red;
    margin-bottom: 1rem;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #999;
    padding: 1rem;
}

header .logo {
    max-width: 150px;
}

header .logo img {
    max-width: 100%;
}

header nav {
    text-align: right;
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-left: 1rem;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

header nav ul li a:hover {
    color: #ccc;
}




.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Aligns content to the top */
    min-height: 100vh;
}


.front-style {
	color:red;
	
}
h1.front-style {
	font-size: 50px;
	font-weight: bolder;
}


p.front-style {
	font-size: 35px;
	font-weight: bolder;
	
}

img.front-logo {
	
	width: 30%; 
}

@media screen and (max-width: 768px) {
    input[type=text], select, button {
        font-size: 1.2em;
	}
	
    form {
        display: flex;
        flex-direction: column;
        align-items: center;
	}
	
    label {
        width: 100%;
	}
	
    input[type="text"], input[type="password"], select, button {
        width: 100%;
        max-width: 320px; /* Adjust this value if necessary to fit your desired mobile layout */
	}

    .admin-login input, .admin-login select, .admin-login button {
        font-size: 1.2em;
	}
	
	a.button-style-front {
    color: white;
    padding: 20px 16px;
    font-size: 15px;
	font-weight: bolder;
    width: 60%; /* Set the width to 100% to make it full width */
	
}

h1.front-style {
	font-size: 30px;
	font-weight: bolder;
}


p.front-style {
	font-size: 15px;
	font-weight: bolder;
	text-align: center;

img.front-logo {
	
	width: 50%; 
}


}

.ap-vendor-meta {
	font-size: 0.85em;
	color: #555;
	display: block;
}

