
.h2 {
"background color:#93a1a9";
}
.container {
    display: flex;
    gap: 20px; /* Adds space between sections */
    align-items: flex-start; /* Aligns to the top */
    margin-right: 30px;
}

.list {
    flex: 1; /* Takes 1 part of the available space */
    max-width: 20%; /* Limits width */
}

.details {
    flex: 2; /* Takes 2 parts of the available space */
    max-width: 80%; /* Ensures form doesn't get too wide */
}

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

.list li {
    padding: 5px;
    background:  #93a9b8;
    margin-bottom: 5px;
}

form {
    background:  #c3d0d9;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 2);
    width: 95%;
    align: center;
}
 modal-footer { 
background-color: rgb( 111, 222, 222 );
        }

modal-header { 
background-color:#6c6f70; 
	}
        * {
        }
.modal-body {
  font-family: Source Code Pro, Arial;
  background-color: #a9b8c2; /* Keeps it modal-friendly */
  margin: 10;
  padding: 10;
  text-align: auto;
        }
 .container {
   background:  #d0d2d3;
   align-items: center;
   padding: 5px;
   border-radius: 10px;
   box-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
   display: inline-grid;
   text-align: auto;
   max-width: 500px;
   width: 90%;
   overflow: auto;
        }
  
  label {
    display: block;
    margin-top: 10px;
        }
  input, select, button {
            width: auto;
            padding: 5px;
            margin-top: 5px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
   button {
            background-color: #28a745;
            color: white;
            border: none;
            cursor: pointer;
            margin-top: 5px;
        }
   button:hover {
            background-color: #218838;
        }
   .success {
            color: green;
            font-weight: bold;
        }
   .error {
            color: red;
            font-weight: bold;
        }
