#main{margin-top:52px}

/* Base button style */
.modern-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #6a5acd, #7b68ee);  /* Gradient background */
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Button hover effect */
.modern-btn:hover {
    background: linear-gradient(135deg, #7b68ee, #6a5acd); /* Reverse gradient on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
    transform: translateY(-3px); /* Lift the button up */
}

/* Button active (pressed) state */
.modern-btn:active {
    background: #7b68ee; /* Solid background on click */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(1px); /* Slightly push down on click */
}

/* Focus state for accessibility */
.modern-btn:focus {
    outline: none;
    border: 2px solid #6a5acd;
}

/* Optional: Add subtle text-shadow for a more modern feel */
.modern-btn {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


.custom-accordian-button{
  font-weight: normal;
  font-size: 1.2rem !important;
  background-color: #2196f3;
  color: black !important;
}
}
