@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}
.fund-price-filter-container,
.fund-price-table-container {
    margin-bottom: 20px;
    overflow-x: auto;
}
.fund-price-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}
.filter-field {
    display: flex;
    flex-direction: column;
}
.filter-field label {
    margin-bottom: 5px;
    font-weight: bold;
}
.filter-field input[type="text"],
.filter-field input[type="date"],
.filter-field select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #dcec00;
    min-width: 150px;
}
.filter-field.date-range {
    flex-direction: row;
    align-items: center;
}
.filter-field.date-range label {
    margin-right: 10px;
}
.filter-button {
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}
.filter-button:hover {
    background-color: #0056b3;
}
.fund-price-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-left: -8px;
}
.fund-price-table th,
.fund-price-table td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}
.fund-price-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}
.no-data {
    font-style: italic;
    color: #777;
}
#fund-price-filter-form-ajax {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.fund-price-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}
.fund-price-table th,
.fund-price-table td {
    border: none;
}
.fund-price-table th {
    border-bottom-width: 2px;
    border-bottom-color: #c0c0c0;
}
.fund-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}
.fund-price-table tbody {
    display: block;
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
}
.fund-price-table thead tr,
.fund-price-table tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.date-picker-container {
    background-color: #dcec00;
    padding: 8px;
    border-radius: 10px;
}
.date-range-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #dcec00;
    border-radius: 10px;
}
.date-range-header .arrow {
    cursor: pointer;
}
.preset-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 12px;
}
.preset-buttons button {
    padding: 6px !important;
    border: 1px solid #ccc !important;
    border-radius: 10px !important;
    background-color: #fff !important;
    cursor: pointer !important;
}
.preset-buttons button.active {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}
.date-inputs label {
    display: block;
    margin-bottom: 4px;
    color: #333;
}
.date-inputs input[type="date"] {
    width: calc(100% - 18px);
    padding: 7px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 12px;
    box-sizing: border-box;
}
.action-buttons {
    display: flex;
    justify-content: space-between;
}
.action-buttons button {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 16px;
    cursor: pointer;
    flex-grow: 1;
}
.action-buttons button.apply {
    background-color: #fff;
    color: #000;
    margin-right: 4px;
    border: 1.5px solid #000;
}
.action-buttons button.cancel {
    background-color: #fff;
    color: #000;
    margin-left: 4px;
    border: 1px solid #ccc;
}
#datePickerContent {
    position: absolute;
    z-index: 1000;
    background-color: #dcec00;
    padding: 7px;
    border: 1px solid #333;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.date-button {
  max-width: 10px;
}
.download-link {
    font-weight: bold;
    text-decoration: none;
}
.download-link .material-icons {
    vertical-align: middle;
    margin-right: 5px;
}
.fund_name {
    max-width: 352px;
}