#create-password-button {
    display: none; /* Initially hidden */
    margin-top: 20px; /* Add margin at the top */
    padding: 10px 20px; /* Add padding for a clickable area */
    background-color: #6d5cae; /* Professional-looking purple color */
    color: #ffffff; /* White text */
    font-size: 16px; /* Slightly larger font */
    border: none; /* Remove default borders */
    border-radius: 8px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
}

#create-password-button:hover {
    background-color: #5a49b5; /* Slightly darker purple on hover */
}

#create-password-button:active {
    background-color: #4e3da5; /* Even darker purple on click */
    transform: scale(0.98); /* Subtle click animation */
}

/* Button base styling */
.btn-styled {
    background-color: #6d5cae; /* Primary color */
    color: white; /* Text color */
    border: none; /* Remove border */
    border-radius: 12px; /* Rounded corners */
    padding: 12px 24px; /* Spacing around text */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Bold text */
    text-align: center; /* Center-align the text */
    cursor: pointer; /* Pointer cursor for interactivity */
    transition: all 0.3s ease; /* Smooth hover transition */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    display: flex; /* Align text and spinner */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    gap: 8px; /* Space between text and spinner */
}

/* Hover effect */
.btn-styled:hover {
    background-color: #5c4ba2; /* Slightly darker shade on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Slightly deeper shadow */
    transform: translateY(-2px); /* Subtle lift effect */
}

/* Disabled state styling */
.btn-styled:disabled {
    background-color: #b8a7de; /* Lighter shade for disabled state */
    color: #f4f4f4; /* Slightly lighter text */
    cursor: not-allowed; /* Unclickable cursor */
    box-shadow: none; /* Remove shadow */
    opacity: 0.7; /* Reduced opacity */
}

/* Optional focus state */
.btn-styled:focus {
    outline: none; /* Remove default outline */
    box-shadow: 0 0 0 3px rgba(109, 92, 174, 0.5); /* Add a focus ring */
} 
/* .form-control input{
    border: none;
}
.form-group{
    border: none;
}  */




.charts-wrapper {
    display: flex;
    flex-wrap: wrap; /* ✅ allows wrapping */
    justify-content: space-around; /* even spacing */
    gap: 20px; /* space between charts */
    padding: 20px;
  }

  .chart-box {
    flex: 1 1 400px; /* grow, shrink, minimum width */
    max-width: 50%;  /* each chart max takes ~half width */
    background: #f9f9f9;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
  }

  .chart-box h3 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
  }

  canvas {
    width: 100% !important; /* make chart responsive */
    height: 400px !important;
  }