/*
Theme Name: DC Project
Theme URI: https://yourwebsite.com/
Author: Puneet
Author URI: https://yourwebsite.com/
Description: Custom theme for internal project management (DC Project).
Version: 1.0
Text Domain: dc-project
*/
body {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
  }

/* Responsive adjustments */
@media (max-width: 640px) {
  body {
    font-size: 13px;
  }
  
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
  }
}

/* Improve form elements consistency */
input, textarea, select, button {
  font-family: 'Manrope', sans-serif;
}

/* Custom toast styling */
#copy-toast {
  transition: opacity 0.3s ease;
  z-index: 9999;
}

/* Smooth transitions */
.credential-card {
  transition: all 0.2s ease-in-out;
}

/* Fix for modals on mobile */
.overflow-y-auto {
  -webkit-overflow-scrolling: touch;
}