/* Centered Inactivity Request */
.inactive-wrapper {
    max-width: 640px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--header-bg);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px var(--shadow);
  }
  
  .inactive-wrapper h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-align: center;
  }
  
  .inactive-info {
    text-align: center;
    font-size: 0.95rem;
    color: var(--subtext-color);
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .inactivity-form label {
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: block;
    color: var(--link-color);
  }
  
  .inactivity-form textarea,
  .inactivity-form input[type="date"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--sidebar-border);
    border-radius: 0.375rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    background-color: var(--bg-color);
    color: var(--text-color);
  }
  
  .form-row {
    display: flex;
    gap: 1rem;
  }
  
  .form-group {
    flex: 1;
  }
  
  .submit-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .submit-btn:hover {
    background-color: #2563eb;
  }
  
  .form-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--subtext-color);
  }
  
  .form-footer a {
    color: #3b82f6;
    text-decoration: none;
  }
  
  .form-footer a:hover {
    text-decoration: underline;
  }
  
  /* Layout for Inactivity Request + Info Panels */
  .inactive-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1100px;
    padding: 0 1rem;
  }
  
  /* Info Panel Styles */
  .info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .info-box {
    background-color: var(--header-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 6px 15px var(--shadow);
  }
  
  .info-box h3 {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 1.125rem;
    font-weight: 600;
  }
  
  .info-box p {
    color: var(--subtext-color);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .loa-status {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.95rem;
    color: var(--link-color);
  }
  
  .loa-status li {
    margin-bottom: 0.5rem;
  }
  
  /* Header Overrides */
  .header {
    background-color: var(--header-bg);
    box-shadow: 0 2px 4px var(--shadow);
  }
  
  .logo {
    color: var(--text-color);
  }
  
  .page-title {
    color: var(--subtext-color);
  }  