
@keyframes zoom-in-out {
    0% {
        transform: scale(1, 1);
    }
    40% {
        transform: scale(1.8, 1.8);
    }
    80% {
        transform: scale(1, 1);
    }
}

.widget-icon.bg-coral {
    background-color: #3498db !important; 
}
.dashboard-icon-widget .card-body {
    padding: 6px;
}

.sidebar-menu li a .icon {
    
     height: 18px; width: 18px; 
}
.text-danger
{
    color: #3498db !important; 
}
.nav-link.dropdown-toggle {
    display: none;
}

.page-wrapper.clearfix {
    padding: 0 !important;
}


/* Attendance management specific styles */
.attendance-settings-form,
.shifts-form {
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    margin-top: 10px;
}

#shiftOptions {
    display: none;
}

.attendance-button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.attendance-button:hover {
    background-color: #45a049;
}

.form-signin {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  max-width: 400px;
  width: 100%;
  padding: 20px;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .form-signin {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
    background: white;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }

  .form-signin .card {
    margin: 0;
    border-radius: 0;
  }
}