body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4; /* Light background similar to Level Agency */
    color: #333;
    margin: 0;
    padding: 0;
}

/* Container for the table */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff; /* White background for table container */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Table styling */
.table {
    width: 100%; /* Make table fill the container */
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table th, .table td {
    padding: 15px; /* Add padding */
    border: 1px solid #ddd;
    text-align: left;
}

.table th {
    background-color: #0056a4; /* Level Agency brand color */
    color: #fff;
    font-weight: bold;
}

.table td {
    background-color: #f9f9f9; /* Light gray for table cells */
}

/* Hover effect for rows */
.table tr:hover {
    background-color: #d4e6f1; /* Subtle hover effect */
}

/* Button styling */
.btn {
    background-color: #0056a4; /* Level Agency brand color */
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}

.btn:hover {
    background-color: #003f79;
}
#lead-submission-form, #login-form, .dashboard {
	max-width: 1200px;
    margin: 30px auto;
}
#lead-submission-form > div, #login-form > div{
	margin-top:20px;
}
form .form-group {
    margin-bottom: 15px;
}

form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="number"],
form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form input[type="checkbox"] {
    margin-right: 5px;
}

form textarea {
    resize: vertical;
}

form button {
    background-color: #0056a4; /* Level Agency brand color */
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
}

form button:hover {
    background-color: #003f79;
}

/* Success and error messages */
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* Additional styling */
form .form-inline {
    display: flex;
    align-items: center;
}

form .form-inline label {
    margin-bottom: 0;
}

form .form-inline input[type="checkbox"] {
    margin-top: 0;
}
h1 {
    color: #0056a4; /* Level Agency brand color */
}

h5 {
    margin-top: 30px;
	margin-bottom: 10px;
    font-size: 1.2em;
    color: #0056a4;
}
.logout{margin-top:50px}

p {
    font-size: 1em;
}

a {
    color: #0056a4;
    text-decoration: none;
    font-size: 1em;
}

a:hover {
    text-decoration: underline;
}