/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */
a[href*="PleskLogin"],
a:contains("Log in to Plesk") {
    display: none !important;
}




/* === HRM360 ULTRA MODERN THEME for WHMCS SIX === */

/* GLOBAL RESET */
body {
  background-color: #F9FAFB !important;
  color: #1F2937 !important;
  font-family: 'Inter', 'Segoe UI', sans-serif !important;
  font-size: 15px;
  line-height: 1.6;
  transition: background 0.4s ease, color 0.4s ease;
}

/* HEADER / NAVIGATION */
.header,
.navbar-main {
  background: linear-gradient(135deg, #0E2D5D, #1E88E5) !important;
  border-bottom: 3px solid #42A5F5 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease-in-out;
}
.navbar-main a {
  color: #ffffff !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.navbar-main a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #42A5F5;
  transition: width 0.3s ease;
}
.navbar-main a:hover::after {
  width: 100%;
}
.navbar-main a:hover {
  color: #42A5F5 !important;
  transform: translateY(-2px);
}

/* DROPDOWN MENU */
.navbar-main .dropdown-menu {
  background-color: #ffffff !important;
  border: 1px solid #E5E7EB !important;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  animation: fadeDown 0.25s ease forwards;
  z-index: 9999 !important;
}
.navbar-main .dropdown-menu > li > a {
  color: #1F2937 !important;
  padding: 10px 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.navbar-main .dropdown-menu > li > a:hover {
  background-color: #1E88E5 !important;
  color: #ffffff !important;
  transform: translateX(4px);
}
@keyframes fadeDown {
  0% {opacity:0; transform:translateY(-8px);}
  100% {opacity:1; transform:translateY(0);}
}

/* BUTTONS */
.btn-primary {
  background: linear-gradient(135deg, #1E88E5, #42A5F5) !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(30,136,229,0.4);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(66,165,245,0.6);
}
.btn-default {
  background: #ffffff !important;
  color: #1E88E5 !important;
  border: 1px solid #1E88E5 !important;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn-default:hover {
  background-color: #1E88E5 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(30,136,229,0.3);
  transform: translateY(-2px);
}

/* CARDS & PANELS */
.panel, .card, .well {
  background-color: #ffffff !important;
  border: 1px solid #E5E7EB !important;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.panel:hover, .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(30,136,229,0.15);
}
.panel-heading, .card-header {
  background-color: #0E2D5D !important;
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 10px 10px 0 0;
}

/* TABLES */
.table > thead > tr {
  background-color: #EAF2FB !important;
  color: #1F2937 !important;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #F9FAFB !important;
}

/* FORMS */
input, select, textarea {
  border: 1px solid #E5E7EB !important;
  border-radius: 6px;
  color: #1F2937 !important;
  transition: all 0.3s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: #1E88E5 !important;
  box-shadow: 0 0 8px rgba(30,136,229,0.25) !important;
}

/* LINKS */
a {
  color: #1E88E5 !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
}
a:hover {
  color: #42A5F5 !important;
  text-shadow: 0 0 8px rgba(66,165,245,0.6);
  transform: translateY(-1px);
}

/* ALERTS */
.alert-success {
  background-color: #E8F5E9 !important;
  color: #2E7D32 !important;
  border-left: 4px solid #2E7D32;
}
.alert-danger {
  background-color: #FFEBEE !important;
  color: #D32F2F !important;
  border-left: 4px solid #D32F2F;
}

/* FOOTER */
footer.footer {
  background: linear-gradient(135deg, #0B2349, #0E2D5D);
  color: #ffffff !important;
  border-top: 3px solid #1E88E5 !important;
  padding: 25px 0;
  box-shadow: 0 -3px 10px rgba(0,0,0,0.2);
}
footer.footer a {
  color: #42A5F5 !important;
  transition: all 0.3s ease;
}
footer.footer a:hover {
  color: #ffffff !important;
  text-shadow: 0 0 6px rgba(66,165,245,0.8);
}

/* LOGIN PAGE */
#login {
  background: linear-gradient(135deg, #0E2D5D 0%, #1E88E5 100%);
  color: #fff !important;
}
#login .btn-primary {
  background: #ffffff !important;
  color: #0E2D5D !important;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
}
#login .btn-primary:hover {
  background-color: #F9FAFB !important;
  transform: scale(1.05);
}

/* ANIMATIONS */
@keyframes fadeUp {
  0% {opacity:0; transform:translateY(10px);}
  100% {opacity:1; transform:translateY(0);}
}
.fade-in {
  animation: fadeUp 0.4s ease forwards;
}

