
/* All Main SVG Graph Container CSS */
#rally-point-svg-container, #rally-arrow-svg-container, #rally-histo-svg-container {
    position: relative;
    user-select: none; /* Prevent text selection */
}

/* Parnet container of graph */
.rally-graph-div {
    border: 1px solid black;
}

.rally-graph-div.buttonless {
    border: 1px solid black;
    margin-top: 20px;
}

/* Pooruvi */
.rally-graph-div > div {
    /* width: 450px;
    min-height: 450px; */
    /* max-width: attr(container-width) px;
    max-height: attr(container-heigth) px; */
    position: relative;
    user-select: none; /* Prevent text selection */
}

/* Graph Select buttons */
.graph-btn {
    margin: 5px;
    cursor: pointer;
    font-size: 11px;
    font-family: Arial;
    height: 10px !important;
    color: white;
    background-color: #1f5181 !important;
}

/* .graph-btn.select {
    margin: 5px;
    cursor: pointer;
    font-size: 11px;
    font-family: Arial;
    height: 10px !important;
    border-radius: 50%;
    padding: unset;
    color: white;
    background-color: #1f5181 !important;
    height: 20px !important;
    width: 20px !important;
} */

/* Button holding div */
.rally-buttons-div {
    border: 1px solid blue !important;
    margin-bottom: 5px;
    margin-top: 10px;
}

/* Button selection class */
.rally-active {
    background-color: rgb(255, 255, 255) !important;
    color: blue !important;
    border: 1px solid blue !important;
}

/* Graph Preview Border */
.rally-graph-preview {
    margin-top: 20px;
    border: 1px solid black;
    padding: 5px 5px 0px 5px ;
}

/* Info div CSS */
.rally-info-div {
    /* visibility: hidden; */
    margin-top: 5px;
    padding-left: 5px !important;
    /* padding: 10px; */
    border: 1px solid lightblue;
    font-size: 12px;
    font-family: Arial;
    color: blue !important;
    height: 20px;
}

/* Preview Graph Image Border */
.rally-graph-image {
    border: 1px solid black;
}

/* Save button & reset button css */
.rally-save-data, .rally-reset-data{
    background-color: #216E8B !important;
    color: white !important;
}

/* Reset Button CSS */
.rally-reset-data{
    margin-bottom: 5px !important;
}

.interactive-circle{
    cursor: pointer;
}

/* ================= Mitesh ================== */

/* Container to hold the buttons */
.rally-buttons-div {
    border: 1px solid blue !important;
    margin-bottom: 5px;
    margin-top: 10px;
    display: flex;
}

/* Default styling for the buttons */
.rally-buttons-div > button {
    padding: 2px 6px;
    height: auto !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    font-size: 10px;
    font-weight: 600;
    border: 1px solid #216E8B;
}

/* CSS when the button is not active */
.rally-buttons-div > button:not(.rally-active) {
    color: white;
    border-radius: 20px;
    background-color: #2c84a5 !important;
    background: linear-gradient(0deg, rgba(30, 95, 120, 1) 7%, rgba(63, 152, 198, 1) 50%);
}

/* CSS for when the button is active */
.rally-buttons-div > button.rally-active {
    color: #000 !important;
    border-radius: 20px;
    border: 1px solid #216E8B;
    background-color: #fff !important;
    background: linear-gradient(0deg, rgb(183 183 183) 0%, rgba(255, 255, 255, 1) 36%);
}

/* For Adding brackets for the line button */
.rally-buttons-div > button .rally-button-icon-brackets {
    display: flex;
    color: #ff0000;
}

/* To resize the svg icon inside the button */
.rally-buttons-div > button .rally-button-icon {
    display: flex;
    height: 14px;
    width: 14px;
}


/* ================= Mitesh ==================== */
