/* CSS styles for LeadsCompanion Portal */
body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
}

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

h1 {
    margin: 0;
}

nav {
    text-align: center;
    padding: 10px;
}

/* Set a fixed width for the content container */
.container {
    width: 800px; /* Adjust this value as needed */
    margin: 0 auto; /* Center the container horizontally */
}

/* Grid layout for tiles */
.tile-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 tiles per row */
    grid-gap: 10px;
}

.tile-list li {
    list-style: none;
}

a {
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 15px 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
}

a:hover {
    background-color: #333;
    color: #fff;
}
/* Additional CSS for the Edit button */
#editButton {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-right: 20px;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}
