/* _rhfas-configure-rent-fees.min.css */

.rent-fees-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: "Segoe UI", sans-serif;
    font-size: 16px;
    color: #333;
  }
  
  .rent-fees-form h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 1.5rem;
  }
  
  .rent-fees-form label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
  }
  
  .rent-fees-form input[type="text"],
  .rent-fees-form input[type="date"],
  .rent-fees-form input[type="number"] {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.3rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.3s ease;
  }
  
  .rent-fees-form input:focus {
    border-color: #4caf50;
    outline: none;
  }
  
  .rent-fees-form hr {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid #ccc;
  }
  
  .rent-fees-form button[type="submit"] {
    background: #2e7d32;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .rent-fees-form button[type="submit"]:hover {
    background: #1b5e20;
  }
  
  .notice.notice-error,
  .notice.notice-success {
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 5px solid;
    background: #fff;
    border-radius: 4px;
  }
  
  .notice.notice-error {
    border-color: #d32f2f;
    color: #b71c1c;
    background-color: #fbe9e7;
  }
  
  .notice.notice-success {
    border-color: #388e3c;
    color: #1b5e20;
    background-color: #e8f5e9;
  }
  
  .rent-fees-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-family: "Segoe UI", sans-serif;
    font-size: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  .rent-fees-table th,
  .rent-fees-table td {
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
  }
  
  .rent-fees-table thead {
    background-color: #2e7d32;
    color: #fff;
  }
  
  .rent-fees-table tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  .rent-fees-table tr:hover {
    background-color: #f1f1f1;
  }
  
  .rent-fees-table td {
    white-space: nowrap;
  }
  
  .rent-fees-table th:first-child,
  .rent-fees-table td:first-child {
    font-weight: 600;
  }
  
  