body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eee;
    }

header {
    background-color: #1d1d4e;
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    color: #3d3da3;

}

.table-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3rem;

    justify-content: center;
}

.table-title{
background-color:#5c5cf8;
display:flex;
padding:10px;
margin-bottom:20px;
color:white;
border-radius:5px;
justify-content: center;
}

.small-image {
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
}

.content {
    padding: 70px 40px 40px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;  /* Allow cards to wrap to next line if needed */
  justify-content: space-around;  /* Distribute cards evenly */
  margin: 1rem 0;
}

.card {
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 5px;
  margin: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;  /* Center content within cards */
}

.card h2 {
  margin-bottom: 0.5rem;
}

.card-link {
  display: block;
  text-decoration: none;
  color: #007bff;
  margin-top: 1rem;
}

.card-link:hover {
  color: #0056b3;
}

.selected {
            background-color: lightblue;
       }



 .form-container {
    max-width: 800px;
    margin: 20px auto;
    background-color: #eee;
    border-radius: 5px;
    padding: 20px;
  }
 .form-section {
    margin-bottom: 20px;
    background-color: #fff; /* Set background color for each section */
    padding: 20px; /* Add padding to create space between sections */
    border-radius: 10px; /* Add border-radius for each section */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Add shadow for each section */
    overflow: hidden; /* Ensures section contains floated form fields */
  }
  .form-section h2 {
    margin-top: 0;
  }

  .top-left-section {
        position: absolute;
        top: 30px;
        left: 30px;
        padding: 20px; /* Adjust padding as needed */
        background-color: #fff; /* Adjust background color as needed */
        border-radius: 5px; /* Add border-radius for rounded corners */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Add shadow for the section */
    }

  .manage-table {
    width: 100%;
}

.manage-table th {
    text-align: left;
}