/* logo image css */

.prime-brokers-logo {
  width: 100%;
}

.error-msg {
  color: red;
}

.alert {
  background-color: #f8d7da;
  color: #721c24;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
}

/* login form css */
.justify-center {
  justify-content: right;
}

/* public/styles.css */
.toast-container {
  position: fixed;
  width: 290px;
  top: 63px;
  right: 25px;
  z-index: 1000;
}

.toast {
  display: none;
  background-color: green;
  color: #fff;
  padding: 16px 26px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.password-container{
  position: relative;
}
.password-container input[type="password"],
.password-container input[type="text"]{
  width: 100%;
  box-sizing: border-box;
}

.fa-eye {
  position: absolute;
  top: 60%;
  right: 4%;
  cursor: pointer;
  color: lightgray;
}


/* width */
::-webkit-scrollbar {
  width: 0.375rem !important;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.process_loader {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #4361ee;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
}

:is(.dark .dark\:bg-\[linear-gradient\(135deg\2c \#C6A54A_0\%\2c \#E6C76A_50\%\2c \#B8912E_100\%\)\] ) {
    background-image: linear-gradient(135deg, #C6A54A 0%, #E6C76A 50%, #B8912E 100%);
}

.text-navy {
  color: #0B2E59;
}

.btn-gradient {
    background-image: linear-gradient(135deg, #C6A54A 0%, #E6C76A 50%, #B8912E 100%);
    color: #0B2E59; /* Navy text like logo */
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    filter: brightness(1.05);
    box-shadow: 0 10px 25px -10px rgba(198, 165, 74, 0.6);
}

body.collapsible-vertical #powered-by-footer {
  display: none;
} 

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 767px) {
  .dataTable-top .dataTable-search {
    margin: auto !important;
  }
}

@media screen and (max-width: 767px) {
 :is(.dark  .dark\:bg-gold ){
    background-image: linear-gradient(
      135deg,
      #c6a54a 0%,
      #e6c76a 50%,
      #b8912e 100%
    );
  }
}
