/*
* demo.css
* File include item demo only specific css only
******************************************************************************/
.menu {
  border-right:  solid 1px #dee2e6;
}
.menu .app-brand.demo {
  height: 64px;
}

.dark-style .menu .app-brand.demo {
  height: 64px;
}

.app-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 12px;
}

.app-brand-logo {
    width: 100%;
    height: 60px; 
}

.app-brand-text.demo {
  font-size: 1.25rem;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

.layout-navbar{
  padding-left: 284px !important;
}
/*
* Content
******************************************************************************/

.demo-blocks > * {
  display: block !important;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir='rtl'] .rtl-only {
  display: block !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
  #dropdown-variation-demo .btn-group .text-truncate {
    width: 300px;
    position: relative;
  }
  #dropdown-variation-demo .btn-group .text-truncate::after {
    position: absolute;
    top: 45%;
    right: 0.65rem;
  }
}
/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1.25rem;
}
.layout-demo-placeholder img {
  width: 900px;
}
.layout-demo-info {
  text-align: center;
  margin-top: 1.25rem;
}

.timeline {
  position: relative;
  padding-left: 30px;
  margin: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ddd;
}
.timeline-item {
  position: relative;
  margin-bottom: 20px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3490dc;
}
/* Lead Name */


/* Actions row hidden by default */
.name-actions {
    font-size: 12px;
    color: #6c757d;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
}

/* Show actions when hovering td */
td:hover .name-actions {
    opacity: 1;
    visibility: visible;
}

/* Action links */
.name-actions a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
.name-actions a:hover {
    color: #007bff;

}

/* Vertical separator */
.name-actions span {
    margin: 0 4px;
    color: #ccc;
}

.content-footer{
        padding-left: 260px;
}

        #toastContainer {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .toast {
            display: flex;
            align-items: flex-start;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 12px 16px;
            min-width: 280px;
            max-width: 340px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateX(100%);
            transition: all 0.4s ease;
        }

        .toast.show {
            opacity: 1;
            transform: translateX(0);
        }

        .toast.success {
            border-left: 5px solid #22c55e;
            background: #10b981; color: white;
        }

        .toast.error {
            border-left: 5px solid #ef4444;
        }

        .toast.info {
            border-left: 5px solid #3b82f6;
        }

        .toast.warning {
            border-left: 5px solid #f59e0b;
        }

        .toast-icon {
              display: flex;
              align-items: center;
              justify-content: center;
              height: 35px;
              min-width: 35px;  
              color: #fff;
              font-size: 20px;
              border-radius: 50%;
        }

        .toast-content {
            flex: 1;
        }

        .toast-title {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .toast-message {
            color: #fff;
            font-size: 0.9rem;
        }

        .toast-close {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 18px;
            cursor: pointer;
            margin-left: 10px;
            transition: color 0.2s;
        }

        .toast-close:hover {
            color: #333;
        }
        
         .badge-status {
        display: inline-block;
        padding: 4px 12px;
        font-weight: 600;
        font-size: 13px;
        border-radius: 8px;
    }

    .leads_tw-text {
        color: #000;
        font-size: 13px;
    }

    .mt-n20 {
        margin-top: -20px;
    }

    .nav-tabs .nav-link {
        text-transform: capitalize !important
    }
    .badge-filter{
      cursor: pointer;
    }