 /* Add your CSS styles here */
/* Add a CSS class to style "ON" and "OFF" values like hyperlinks */

/* styles.css */
#refresh-button,
#sync-button,
#ReLoad-button {
  background-color: #007BFF;
  color: #FFFFFF;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin-right: 10px;
}

#refresh-button:hover,
#sync-button:hover,
#ReLoad-button:hover {
  background-color: #0056b3;
}
.w-container {
			max-width: 80%; /* Adjust the percentage as needed */
			margin: 0 auto;
			padding: 20px;
			border: 1px solid #ccc;
			background-color: #f9f9f9;
			position: relative; /* Add this line */
		}
.w-container-login {
    max-width: 75%;
    max-height: 75%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
	text-align: center; 
	
}
.w-container-login form {
    text-align: left; /* Align form content to the left */
}

.w-container-login label {
    display: block; /* Display labels as blocks for alignment */
    text-align: left; /* Align labels to the left */
}

.w-container-login input[type="text"],
.w-container-login input[type="password"],
.w-container-login input[type="email"] {
    width: 95%; /* Make text inputs full-width */
    padding: 10px; /* Add some padding for better appearance */
    margin-bottom: 10px; /* Add space between inputs */
}

.w-container-login input[type="submit"] {
    background-color: #0070e0;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    float: right; /* Float the button to the right */
}

.w-container-login input[type="submit"]:hover {
    background-color: #0052a3;
}

.w-container-login p {
    text-align: center; /* Center the "Forgot your password?" text */
}

.w-container-login p a {
    text-decoration: none;
    color: #0070e0;
    font-weight: bold;
}

.w-container-login p a:hover {
    color: #0052a3;
}
}

        .section {
            margin-bottom: 20px;
        }

        .section h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .field-label {
            font-weight: bold;
        }

        .field-value {
            margin-bottom: 10px;
        }

        .edit-field {
            border: 1px solid #ccc;
            padding: 5px;
            width: 100%;
        }

        .update-button {
            background-color: #0070e0;
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
        }

        .update-button:hover {
            background-color: #0052a3;
		}
		/* Add styles for the back to dashboard link */
.back-to-dashboard {
    position: absolute;
    top: 10px; /* Adjust the top position as needed */
    right: 10px; /* Adjust the right position as needed */
    text-decoration: none;
    text-align: right; /* Align the text to the right */
}

		
	.w-greetings {
    position: absolute;
    top: 10px; /* Adjust the top position as needed */
    left: 10px; /* Adjust the left position as needed */
    font-weight: bold;
    font-size: 18px;
	text-align: left;
}
	.w-profile {
    position: absolute;
    top: 32px; /* Adjust the top position as needed */
    left: 10px; /* Adjust the left position as needed */
    font-size: 14px;
	text-align: left;
}
		/* Add your CSS styles for the dashboard here */

/* Add your CSS styles for the dashboard here */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #0070e0;
    margin-bottom: 20px;
}

p {
    text-align: center;
    font-size: 14px;
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: 1px solid #ddd;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

a {
    text-decoration: none;
    color: #0070e0;
}

a:hover {
    color: #0052a3;
}

.logout-link {
    text-align: right;
    margin-top: 20px;
}

.profile-link {
    display: block;
    text-align: right;
    margin-top: 10px;
    color: #0070e0;
}

.profile-link:hover {
    color: #0052a3;
}

 header {
            background-color: #333;
            color: #fff;
            padding: 20px;
            text-align: center;
        }
		
		     /* Add your CSS styles here */

        /* Header styles */
        header {
            background-color: #333;
            color: #fff;
            padding: 20px;
            text-align: center;
        }

        header h1 {
            font-size: 36px;
        }

        nav ul {
            list-style: none;
            padding: 0;
        }

        nav ul li {
            display: inline;
            margin-right: 20px;
        }

        nav ul li:last-child {
            margin-right: 0;
        }

        nav a {
            text-decoration: none;
            color: #fff;
            font-weight: bold;
            font-size: 18px;
        }

        /* Main content styles */
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        section h2 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        p {
            font-size: 16px;
            line-height: 1.5;
        }

        /* Footer styles */
        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 10px;
        }

        footer p {
            font-size: 14px;
        }

.toggle-autosync {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

/* Remove the default link styling for "ON" and "OFF" */
.toggle-autosync:hover {
    text-decoration: none;
}
