/* General Button Styles */
.simple-btn {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    cursor: pointer;
  }
  
  .simple-btn-primary {
    background-color: #6c757d;
    color: white;
    border-color: #6c757d;
  }
  
  .simple-btn-primary:hover {
    background-color: #5a6268;
    border-color: #545b62;
  }
  
  .simple-btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
  }
  
  /* Caret Styles */
  .simple-caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.5rem;
    vertical-align: middle;
    border-top: 0.4em solid transparent;
    border-bottom: 0.4em solid transparent;
    border-left: 0.4em solid #555;
    transition: transform 0.2s ease-in-out;
  }
  
  .simple-dropdown.open .simple-caret {
    transform: rotate(90deg);
  }
  
  /* Dropdown Styles */
  .simple-dropdown {
    position: relative;
    display: inline-block;
  }
  
  .simple-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    text-align: left;
    list-style: none;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
  }
  
  .simple-dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    cursor: pointer;
  }
  
  .simple-dropdown-item:hover {
    background-color: #f8f9fa;
    color: #16181b;
  }
  
  /* Visible Dropdown */
  .simple-dropdown.open .simple-dropdown-menu {
    display: block;
  }
  