/* Address Form Styles */
.address-form {
   background-color: #ffffff;
   padding: 20px;
   border-radius: 8px;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   margin-bottom: 20px;
 }
 
 .form-group {
   margin-bottom: 15px;
 }
 
 .form-group label {
   display: block;
   margin-bottom: 5px;
   color: #152f2a;
   font-weight: bold;
 }
 
 .form-control {
   width: 100%;
   padding: 10px;
   border: 1px solid #ced4da;
   border-radius: 4px;
   font-size: 16px;
   transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
 }
 
 .form-control:focus {
   border-color: #28a745;
   outline: 0;
   box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
 }
 
 .error-messages {
   background-color: #f8d7da;
   border: 1px solid #f5c6cb;
   border-radius: 4px;
   color: #721c24;
   margin-bottom: 15px;
   padding: 10px;
 }
 
 .error-messages h2 {
   font-size: 18px;
   margin-bottom: 10px;
 }
 
 .error-messages ul {
   list-style-type: none;
   padding-left: 0;
 }
 
 .error-messages li {
   margin-bottom: 5px;
 }
 
 .form-actions {
   text-align: right;
 }
 
 .btn-primary {
   background-color: #28a745;
   border-color: #28a745;
   color: #ffffff;
   padding: 10px 20px;
   font-size: 16px;
   border-radius: 4px;
   cursor: pointer;
   transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
 }
 
 .btn-primary:hover {
   background-color: #218838;
   border-color: #1e7e34;
 }
 
 @media (max-width: 768px) {
   .address-form {
     padding: 15px;
   }
 
   .form-control {
     font-size: 14px;
   }
 
   .btn-primary {
     width: 100%;
   }
 }