/* ClosedTradesClass.css */

.card-modern {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .card-header-modern {
    background-color: #f8f9fa;
    border-bottom: none;
    padding: 16px;
    border-radius: 8px 8px 0 0;
  }
  
  .card-body-modern {
    padding: 16px;
  }
  
  .table-modern {
    width: 100%;
    border-collapse: collapse;
  }
  
  .table-modern th, .table-modern td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
  }
  
  .media-modern {
    display: flex;
    align-items: center;
  }
  
  .media-body-modern {
    margin-left: 10px;
  }
  
  .button-modern {
    font-weight: bold;
    color: #007bff;
    cursor: pointer;
    position: relative;
  }
  
  .button-modern::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s;
  }
  
  .button-modern:hover::after {
    width: 100%;
  }
  