body {
    margin: 0;
}

.dash-spreadsheet.dash-freeze-left {
    max-width: none !important;
}

table.cell-table tr:hover td.dash-cell {
    background-color: white;
    color:'#05293D'
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: "#05293D";
    pointer-events: none; /* Allow interactions with the map */
}

.dash-sk-circle .dash-sk-child:before {
    background-color: #17E8DA !important;
}

/* Style for the loading div */
.loading-div {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: #05293D;
  }

/* CSS to show/hide the modal */
#trend-div:hover #trend-modal-div {
    display: flex !important;
    position: absolute;
    background-color: #05293D; /* Corrected */
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 1;
    border-radius: 10px;
    margin-top: 10px;
}

#trend-modal-div {
    display: none !important;
}

/* CSS to show/hide the modal */
#range-div:hover #range-modal-div {
    display: flex !important;
    position: absolute;
    background-color: #05293D; /* Corrected */
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 1;
    border-radius: 10px;
    margin-top: 10px;
}

#range-modal-div {
    display: none !important;
}

/* CSS to show/hide the modal */
#drive-div:hover #drive-modal-div {
    display: flex !important;
    position: absolute;
    background-color: #05293D; /* Corrected */
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 1;
    border-radius: 10px;
    margin-top: 10px;
}

#drive-modal-div {
    display: none !important;
}

/* Remove spinners for Firefox */
.no-spinners::-webkit-inner-spin-button,
.no-spinners::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove spinners for Chrome, Safari, Edge */
.no-spinners {
  -moz-appearance: textfield;
}

.no-spinners:focus {
    color: #17E8DA !important;
}


.dash-spreadsheet tr:hover {
    background-color: transparent !important;
}

.dash-spreadsheet td.focused,
.dash-spreadsheet td.cell--selected {
    background-color: transparent !important;
    color: #17E8DA !important;
    text-align: left !important;
}

.dt-table-container__row:hover {
    background-color: transparent !important;
    color: #17E8DA !important;
    text-align: left !important;
}


.dash-spreadsheet td.cell--selected .dash-cell-value.input-active,
.dash-spreadsheet td.cell--selected .dash-cell-value.input-active:focus {
    color: #17E8DA !important;
    line-height: normal !important;
    text-align: left !important;
}

/* Change the text color of the delete button when hovered */
#bands-table .dash-cell[data-dash-column="delete-button"]:hover {
    color: #17E8DA !important;
}

.input-field {
    color: white;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 56px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    padding: 5px 10px;
    height: 32px;
    margin-bottom: 10px;
    text-align: center;
}

.input-field:focus {
    color: #17E8DA;
    border-color: #17E8DA;
}

.button-1 {
    background-color: rgba(255, 255, 255, 0); /* 30% opacity */
    color: #FFFFFF;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 56px;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 0.98px; /* Approximate 7% letter spacing */
    transition: all 0.2s;  /* Smooth transition for effects */
    outline: none;  /* Remove browser default outline */
    cursor: pointer;  /* Show hand cursor when hovering */
    height: 45px;
    text-transform: uppercase;
    margin-left: 0px;
    margin-right: 8px;
        /* Glass effect additions */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow to lift the button */
}

.button-1:active {
    color: #17E8DA;
    border-color: #17E8DA;
    transform: scale(0.95);  /* Shrink the button a bit */
}

.button-1:hover {
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2); /* Replace with your actual shadow color */
}

.button-2 {
    background-color: rgba(255, 255, 255, 0.25); /* 30% opacity */
    color: #FFFFFF;
    padding: 10px;
    border: 1.2px solid #05293D;
    border-radius: 56px;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 0.98px; /* Approximate 7% letter spacing */
    transition: all 0.2s;  /* Smooth transition for effects */
    outline: none;  /* Remove browser default outline */
    cursor: pointer;  /* Show hand cursor when hovering */
    height: 45px;
    text-transform: uppercase;
    margin-left: 0px;
    margin-right: 8px;
        /* Glass effect additions */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow to lift the button */
}

.button-2:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Replace with your actual shadow color */
}

.button-2:active {
    color: white;
    border-color: #17E8DA;
    transform: scale(0.95);  /* Shrink the button a bit */
}

.button-3 {
    background-color: yellow;
    color: #05293D;
    padding: 10px;
    border: 1.2px solid #05293D;
    border-radius: 56px;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 0.98px; /* Approximate 7% letter spacing */
    transition: all 0.2s;  /* Smooth transition for effects */
    outline: none;  /* Remove browser default outline */
    cursor: pointer;  /* Show hand cursor when hovering */
    height: 45px;
    text-transform: uppercase;
    margin-left: 0px;
    margin-right: 8px;
        /* Glass effect additions */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow to lift the button */
}

.button-3:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Replace with your actual shadow color */
}

.button-3:active {
    color: white;
    border-color: #17E8DA;
    transform: scale(0.95);  /* Shrink the button a bit */
}

/* .dash-spreadsheet.dash-freeze-top, .dash-spreadsheet.dash-virtualized {
    max-height: 100%;
    } */
    

#drives-table.dash-table-container {
    max-height: none !important; 
    height: 100% !important;
    /* any other styles you want to override */
}

#stats-table.dash-table-container {
    height: 100% !important;
    /* any other styles you want to override */
}

.dash-table-container {
    overflow: auto;
    /* any other styles you want to override */
}

.column-header-name {
    order: -1;
}

.column-actions {
    order: 1;
    margin-left: auto; 
}

/* Default label style */
.rc-slider-mark-text {
    color: white;
    /* other styles */
  }
  
/* Active label style */
.rc-slider-mark-text-active {
color: #4C78EC;
/* other styles */
}

/* Active label style */
.rc-slider-rail {
    background-color: #17E8DA;
    /* other styles */
    }

/* Active handle style */
.rc-slider-handle {
    border: solid 2px #4C78EC;
    /* other styles */
}

/* Active handle style */
.tab--selected {
    background-color: transparent !important;
    /* other styles */
}

.Select-value {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    align-content: center;
    align-items: center;
    justify-content: center;
    display: flex;
    color: white;
    margin-top: 0 !important;
    margin-left: 0 !important;
}

.Select-value-icon {
    color: white !important;
    border: none;
}

.Select-value-label {
    color: white !important;
    border: none;
}

.VirtualizedSelectOption {
    text-transform: uppercase;
}

.Select-control {
    color: white;
    width: 100%;
    background-color: #05293D !important;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    padding: 5px 10px;
    height: 30px;
    border-radius: 50px !important;
    margin-top: 8px;/* Replace with your actual shadow color */
    margin-bottom: 8px;
}

.Select-placeholder {
    color: white;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    align-content: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

.ReactVirtualized__Grid.ReactVirtualized__List.VirtualSelectGrid {
    padding-bottom: 16px;
    padding-top: 12px;
    overflow: hidden;
}

.heading{
    padding-left: 16px;
}

/*.main-svg {*/
/*    background-color: tran;*/
/*}*/

.Select-menu-outer {
    color: #FFFFFF;
    width: 100%;
    background-color: #05293D;
    font-family: 'IBM Plex Mono', monospace;
    border-radius: 12px !important; /* Replace with your actual shadow color */
    margin-top: 8px;
    border: none;
}

.Select-menu {
    padding-bottom: 20px;
    background-color: #05293D;
    border-radius: 12px !important; /* Replace with your actual shadow color */
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.Select-control:hover {
    box-shadow: -0px 0px #17E8DA;
    transition: all 0.2s;  /* Smooth transition for effects */
}

.Select-multi-value-wrapper {
    align-items: center !important;
    display: flex !important;
    justify-content: center !important;
}

.button-on {
    background-color: #FFFFFF;
    color: #29AD71;
    padding: 10px;
    border: 1.2px solid #05293D;
    border-radius: 56px;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 0.98px; /* Approximate 7% letter spacing */
    transition: all 0.2s;  /* Smooth transition for effects */
    outline: none;  /* Remove browser default outline */
    cursor: pointer;  /* Show hand cursor when hovering */
    height: 45px;
    margin-bottom: 10px;
    text-transform: uppercase;
    margin-left: 0px;
    margin-right: 8px;
        /* Glass effect additions */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow to lift the button */
}

.button-on:active {
    color: #17E8DA;
    border-color: #17E8DA;
    transform: scale(0.95);  /* Shrink the button a bit */
}

.button-on:hover {
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.4); /* Replace with your actual shadow color */
}

.button-off {
    background-color: #FF2450;
    color: white;
    padding: 10px;
    border: 1.2px solid #05293D;
    border-radius: 50px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    transition: all 0.2s;  /* Smooth transition for effects */
    outline: none;  /* Remove browser default outline */
    cursor: pointer;  /* Show hand cursor when hovering */
    margin-bottom: 10px;
    height: 45px;
    text-transform: uppercase;
    margin-right: 10px;
    margin-left: 10px;
}

.button-off:hover {
    transform: scale(1.05);
}

.button-on:hover {
    transform: scale(1.05);
}

.main-svg {
    background-color: rgba(255, 255, 255, 0) !important; /* Replace with your actual shadow color */
}


.yaxislayer-above{
    color: white
}
.xaxislayer-above{
    color: white
}
.gridlayer{
    color: white
}
.zerolinelayer{
    color: white
}
.crisp{
    stroke: white !important
}
.xtick{
    color: white !important
}
.ytick{
    color: white !important
}
