
.navigation-header
{
	padding-top: 20px
}
#main-menu-navigation .nav-item 
{
	background-color: #003366;
  
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

#main-menu-navigation .nav-item  a
{
    color: rgba(255, 255, 255, 0.796) !important;
}


#main-menu-navigation .nav-item:hover {
    /* background-color: rgba(0, 0, 0, .2) !important; */
}

#main-menu-navigation .active i {
    color: white !important;
}

#main-menu-navigation .active{
    background-color: #673ab7 !important;
    color: white;
}


#main-menu-navigation 
{
	background-color: #003366;
}

.icon-color {
    color:#ff8b3e;

}

.body-overlay {

    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1000;
    left: 0;
    background-color: white;
    opacity: 0.8;
}

.footer-overlay {
    width: 98%;
    height: 60px;
    z-index: 1000;
    position: absolute;
    left: 0;
    background: white;
    opacity: 0.8;
}

.overlay img {
    width: 155px !important;
}


html body .content .content-wrapper {
    padding: 2.1rem 1.3rem 0;
}

.card-header .heading-elements, .card-header .heading-elements-toggle {
    background-color: inherit;
    position: absolute;
    top: 20px;
    right: 20px;
}

.dropdown-toggle::after {
    font-size: .8rem;
    font-family: LineAwesome;
    content: "\f110"!important;
    border: none!important;
    position: relative;
    top: 0;
    right: 0;
    padding: 0 2px 0 6px;
    margin: 0 .3em 0 0;
    vertical-align: 0;
}


.dropdown .dropdown-menu {
    border: 1px solid #e4e5ec;
    border-radius: .35rem;
    transform-origin: top;
    transition: all .2s linear;
    margin: -.1rem 0 0;
    box-shadow: 0 5px 75px 2px rgba(64,70,74,.2);
    min-width: 11rem;
    animation: .25s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadein;
}

.icheckbox_square-blue {
    background-position: 0 0;
}
.icheckbox_square-blue, .iradio_square-blue {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 22px;
    height: 22px;
    background: url('../../app-assets/vendors/css/forms/icheck/square/blue.png') no-repeat;
    border: none;
    cursor: pointer;
}

tr.group, tr.group:hover {
    background-color: #ededed !important;
}

.btn-group {
    box-shadow: none !important;
}

@media only screen and (max-width: 767px) {
  .nav-link>.ft-menu, .nav-link>.material-icons {
    color: #2C343B !important;
  }
}

.nav.nav-tabs.nav-top-border .nav-item a {
    color: #663DAC !important;
    font-weight: 600;
}

.nav.nav-tabs.nav-top-border .nav-item a.nav-link.active {
    border-top: 3px solid #663DAC !important;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    color: #555;
}

body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu.menu-fixed .main-menu-content {
    height: auto !important;
}


/* .btn-success .btn .waves-effect {
    height: 45px;
} */


 
.select2-container input {
    border: none !important;
  }


  
  /* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap'); */

  /* Flexbox for the home-card grid */
  .home-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    /* Spacing between home-cards */
    max-width: 1000px;
    /* Adjust as needed */
    padding: 20px;
  }

  /* Base home-card styling */
  .home-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(25% - 11.25px);
    /* Four home-cards per row (15px gap * 3 = 45px total gap) / 4 */
    min-width: 180px;
    /* Minimum size for home-card */
    height: 120px;
    /* Fixed height for uniformity */
    padding: 15px;
    padding-bottom: 5px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for depth */
    transition: transform 0.2s, box-shadow 0.2s;
  }

  /* Hover effect */
  .home-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }

  /* Text styling */
  .home-card p {
    font-family: Nunito Sans !important;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 17px;
    line-height: 130%;
    letter-spacing: 0px;
    text-transform: capitalize;
    margin-top: 25px;
    color: #1F2937;
    /* Darker text */
  }

  /* Icon styling */
  .home-card i {
    font-size: 30px;
    margin-bottom: 5px;
  }

  /* --- Specific Color Classes for Backgrounds --- */

  /* Row 1 Colors */
  .home-card-purple-light {
    background-color: #EEF2FF;
  }

  .home-card-green-light {
    background-color: #F0FDFA;
    border: 1px solid #0D94881A;
  }

  .home-card-mint-light {
    background-color: #F0FDF4;
    border: 1px solid #16A34A1A;
  }

  .home-card-pink-light {
    background-color: #FFF1F2;
    border: 1px solid #E11D481A;
  }

  /* Row 2 Colors */
  .home-card-orange-light {
    background-color: #FFF7ED;
  }

  .home-card-sand-light {
    background-color: #FFFBEB;
  }

  .home-card-blue-light {
    background-color: #EFF6FF;
  }

  .home-card-sky-light {
    background-color: #F0F9FF;
  }

  /* Row 3 Colors */
  .home-card-lime-light {
    background-color: #ECFDF5;
  }

  .home-card-lilac-light {
    background-color: #F5F3FF;
    border: 1px solid #6D28D91A;
  }

  .home-card-gray-light {
    background-color: #F5F9FF;
  }

  .home-card-rose-light {
    background-color: #FDF2F8 !important;
    border: 1px solid #DB27771A;
  }

  /* --- Responsive Adjustments --- */
  @media (max-width: 900px) {
    .home-card {
      width: calc(33.33% - 10px);
      /* 3 home-cards per row */
    }
  }

  @media (max-width: 600px) {
    .home-card {
      width: calc(50% - 7.5px);
      /* 2 home-cards per row */
      height: 100px;
    }

    .home-card-grid {
      gap: 10px;
    }
  }

  /* drag and drop */


.drag-drop-container {
  min-height: 150px;
  border: 3px dashed #ccc;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  /* For positioning hidden input */
}

.drag-drop-container p {
  margin: 10px 0;
  color: #666;
}

.drag-drop-container.drag-over {
  border-color: #007bff;
  background-color: #e6f7ff;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

/* Style for the clickable text */
.drag-drop-container .click-to-select {
  color: #007bff;
  cursor: pointer;
  text-decoration: underline;
}

.drag-drop-container .click-to-select:hover {
  color: #0056b3;
}

/* Hidden file input */
.hidden-file-input {
  display: none;
}

.file-list {
  list-style-type: none;
  padding: 0;
  margin-top: 15px;
  width: 100%;
  max-height: 200px;
  /* Limit height for long lists */
  overflow-y: auto;
  /* Enable scrolling if list is too long */
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.file-list li {
  background-color: #f9f9f9;
  margin-bottom: 5px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em;
  color: #555;
}

.file-list li span {
  word-break: break-all;
  /* Ensure long file names wrap */
  flex-grow: 1;
  /* Allow name to take available space */
}

.file-list li .file-size {
  font-size: 0.8em;
  color: #888;
  margin-left: 10px;
  white-space: nowrap;
}

.file-list li .remove-file {
  margin-left: 15px;
  color: #ff4d4f;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.2s ease;
}

.file-list li .remove-file:hover {
  color: #e00;
}

/* Scrollbar styling for file list (optional) */
.file-list::-webkit-scrollbar {
  width: 8px;
}

.file-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.file-list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.file-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.dp-file-name {
  width: 70%;
  text-align: left;
}

.file-list li {
  /* ... (existing rules) ... */
  display: flex;
  align-items: center;
  /* Align items vertically in the middle */
}

.file-list li .file-info {
  display: flex;
  align-items: center;
  flex-grow: 1;
  overflow: hidden;
  /* Prevent text overflow from pushing controls */
  width: 90%;
}

.file-list li .file-name {
  word-break: break-all;
  /* Ensure long file names wrap */
  flex-grow: 1;
  /* Allow name to take available space */
  margin-right: 10px;
  /* Space between name and size/preview */
  text-align: left;
  width: 60%;
  ;
}

.file-list li .file-preview {
  width: 40px;
  /* Fixed width for preview container */
  height: 40px;
  /* Fixed height for preview container */
  margin-right: 10px;
  /* Space between preview and file name */
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  /* Prevent preview from shrinking */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eee;
}

.file-list li .file-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Ensure image fits within bounds */
  display: block;
}

.file-list li .file-preview .placeholder-icon {
  font-size: 1.5em;
  color: #999;
}

/* Ensure the file-size and remove-file are still aligned */
.file-list li .file-size,
.file-list li .remove-file {
  flex-shrink: 0;
  /* Prevent these from shrinking */
}

