/*================================================================================
	Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
	Version: 2.0
	Author: PIXINVENT
	Author URL: http://www.themeforest.net/user/pixinvent
================================================================================

NOTE:
------
PLACE HERE YOUR OWN SCSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS.  */
.gradient-navbar {
    background: linear-gradient(90deg, #572abe, #fbc2eb, #f9a825); /* purple to orange */
    /* color: white; */
}
.table-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  .search-bar {
    width: 200px;
    float: right;
    margin-bottom: 10px;
  }
  .group-table tbody tr:hover {
      background-color: #f3f0ff !important; /* light purple background */
      cursor: pointer;
      transition: background-color 0.2s ease-in-out;
  }

  /* loader css */

  .ajax-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.3); /* Optional: dark overlay effect */
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container centering the spinner and text */
.loader-container {
    text-align: center;
}

/* Custom loader text styling and animation */
.loader-text {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 10px;
    animation: textPulse 1.5s infinite;
}

/* Simple pulse animation */
@keyframes textPulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.edit-header {
    margin-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
}

