/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fafafa;
    color: #1f2937;
    display: flex;
    min-height: 100vh;
}

.wrapper {
    height: 100%;
    overflow: hidden;
    width: 100%;
}


/* Sidebar Styles */
.sidebar {
    width: 256px;
    background: linear-gradient(180deg, #1b1b1b 0%, #1913a9 100%);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    border-bottom: 2px solid #8b5cf6;
    padding-bottom: 8px;
}
.sidebar-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}


.user-avatar-small {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.user-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.avatar {
    position: relative;
    width: 48px;
    height: 48px;
}

.avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #8b5cf6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.header-center {
    margin-left: 25%;
    width: 100%;
}

/* Optional desktop logo size */
.logo {
    width: 200px;
}

/* Mobile view: 768px and below */
@media (max-width: 768px) {
    .header-center {
        margin-left: 0;
        text-align: center;
    }

    .logo {
        width: 150px; /* smaller logo for mobile view */
    }
}


.user-info {
    flex: 1;
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.user-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Navigation Styles */
.sidebar-nav {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.nav-menu {
    list-style: none;
    margin-bottom: 32px;
}

.nav-item {
    margin-bottom: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.2s ease;
}


.nav-link:hover {
    background: rgba(139, 92, 246, 0.25);
    color: white;
}

.nav-link.active {
    background: rgba(139, 92, 246, 0.25);
    color: white;
    font-weight: 600;
}

.nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Sidebar Actions */
.sidebar-actions {
    margin-top: auto;
    margin-bottom: 16px;
}

.action-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.2s ease;
    width: 100%;
}

.action-button:hover {
    background: rgba(139, 92, 246, 0.25);
}

.action-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logout-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.2s ease;
    width: 100%;
}

.logout-button:hover {
    background: rgba(139, 92, 246, 0.25);
}

.logout-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Main Content Area */
.main-content {
    margin-top: 95px;
    margin-left: 256px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Top Header Styles */
.top-header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: 256px;
    position: fixed;
    right: 0;
    z-index: 999;

}

.header-left {
    flex: 1;
    max-width: 400px;
}

.search-container {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #6b7280;
    pointer-events: none;
}

.search-input {
    width: 250px;
    padding: 10px 12px 10px 40px;
    border: none;
    background: rgba(243, 244, 246, 0.5);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    outline: none;
    transition: all 0.2s ease;
}

.search-input::placeholder {
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.search-input:focus {
    background: #f3f4f6;
    box-shadow: 0 0 0 2px #8b5cf6;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn {
    padding: 6px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn.edit {
    background: #f3f4f6;
    color: #6b7280;
}

.action-btn.edit:hover {
    background: #e5e7eb;
    color: #374151;
}

.action-btn.delete {
    background: #fee2e2;
    color: #dc2626;
}

.action-btn.delete:hover {
    background: #fecaca;
    color: #991b1b;
}

.new-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #8b5cf6;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn.delete {
    background: #fee2e2;
    color: #dc2626;
}

.action-btn.delete:hover {
    background: #fecaca;
    color: #991b1b;
}
.action-btn.edit {
    background: #f3f4f6;
    color: #6b7280;
}

.action-btn.edit:hover {
    background: #e5e7eb;
    color: #374151;
}

.new-contact-btn:hover {
    background: #7c3aed;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 8px;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

.btn-green {
    margin: 20px 20px 20px 20px;
    background: #15b300;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-green:hover {
    background: #00a123;
}

.notification-bell {
    position: relative;
    display: inline-block;
}

.bell-icon {
    width: 22px;
    height: 22px;
    color: #6b7280;
    transition: color 0.2s ease;
}

.bell-icon:hover {
    color: #374151;
}

.calendar-notification {
    position: relative;
    cursor: pointer;
}
/* Data Table Styles */
.table-container {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.data-table th {
    background: #f9fafb;
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}
/* User Cell */
.user-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}
/* Status Badges */
.status-badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.inactive {
    background: #fee2e2;
    color: #991b1b;
}

.data-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
}

.data-table tbody tr:hover {
    background: #f9fafb;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.calendar-icon {
    width: 20px;
    height: 20px;
    color: #6b7280;
    transition: color 0.2s ease;
}

.calendar-icon:hover {
    color: #374151;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.user-avatar {
    position: relative;
    width: 32px;
    height: 32px;
}

.user-avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.user-avatar-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #8b5cf6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    color: white;
}

.logout-text {
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s ease;
}

.logout-text:hover {
    color: #374151;
}

/* Content Area */
.content-area {
    padding: 24px;
    flex: 1;
}

.content-area  {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #1f2937;
}

.content-area p {
    color: #6b7280;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .component-section {
        padding: 16px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 4px;
    }

    .data-table {
        font-size: 12px;
    }
    
    .data-table th,
    .data-table td {
        padding: 8px 6px;
    }

    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .header-left {
        max-width: 200px;
    }
    
    .new-contact-btn span {
        display: none;
    }
    
    .logout-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-header {
        padding: 16px;
        gap: 12px;    
        left: 0;
        
    }
    
    .header-right {
        gap: 12px;
    }
    
    .search-input {
        font-size: 12px;
        width: 50px;
    }
    
    .new-contact-btn {
        padding: 8px 12px;
    }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Base column (mobile first) */
.col-1  { width: 8.3333%; }
.col-2  { width: 16.6667%; }
.col-3  { width: 25%; }
.col-4  { width: 33.3333%; }
.col-5  { width: 41.6667%; }
.col-6  { width: 50%; }
.col-7  { width: 58.3333%; }
.col-8  { width: 66.6667%; }
.col-9  { width: 75%; }
.col-10 { width: 83.3333%; }
.col-11 { width: 91.6667%; }
.col-12 { width: 100%; }

/* Medium devices (≥768px) */
@media (min-width: 768px) {
  .col-md-1  { width: 8.3333%; }
  .col-md-2  { width: 16.6667%; }
  .col-md-3  { width: 25%; }
  .col-md-4  { width: 33.3333%; }
  .col-md-5  { width: 41.6667%; }
  .col-md-6  { width: 50%; }
  .col-md-7  { width: 58.3333%; }
  .col-md-8  { width: 66.6667%; }
  .col-md-9  { width: 75%; }
  .col-md-10 { width: 83.3333%; }
  .col-md-11 { width: 91.6667%; }
  .col-md-12 { width: 100%; }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
  .col-lg-1  { width: 8.3333%; }
  .col-lg-2  { width: 16.6667%; }
  .col-lg-3  { width: 25%; }
  .col-lg-4  { width: 33.3333%; }
  .col-lg-5  { width: 41.6667%; }
  .col-lg-6  { width: 50%; }
  .col-lg-7  { width: 58.3333%; }
  .col-lg-8  { width: 66.6667%; }
  .col-lg-9  { width: 75%; }
  .col-lg-10 { width: 83.3333%; }
  .col-lg-11 { width: 91.6667%; }
  .col-lg-12 { width: 100%; }
}

/* Extra large devices (≥1200px) */
@media (min-width: 1200px) {
  .col-xl-1  { width: 8.3333%; }
  .col-xl-2  { width: 16.6667%; }
  .col-xl-3  { width: 25%; }
  .col-xl-4  { width: 33.3333%; }
  .col-xl-5  { width: 41.6667%; }
  .col-xl-6  { width: 50%; }
  .col-xl-7  { width: 58.3333%; }
  .col-xl-8  { width: 66.6667%; }
  .col-xl-9  { width: 75%; }
  .col-xl-10 { width: 83.3333%; }
  .col-xl-11 { width: 91.6667%; }
  .col-xl-12 { width: 100%; }
}

/* Sales Funnel Styles */
.sales-funnel-container {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.sales-funnel-container  {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
    text-align: center;
    height: auto;
}

.funnel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.funnel-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.funnel-segment {
    transition: all 0.3s ease;
    cursor: pointer;
}

.funnel-segment:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.funnel-label {
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

.label-title {
    font-size: 14px;
    font-weight: 600;
    fill: #ffffff;
}

.label-value {
    font-size: 12px;
    font-weight: 700;
    fill: #000000;
}

.label-percentage {
    font-size: 12px;
    font-weight: 500;
    fill: #6b7280;
}

.funnel-stats {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    width: 100%;
    padding-top: 25px;
}
.component-section {
    margin: 12px 0px 12px 0px;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.component-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
    border-bottom: 2px solid #8b5cf6;
    padding-bottom: 8px;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 22px;
    margin: 24px;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.stat-item:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.stat-color {
    width: 50%;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-align: center;
}

.stat-number {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

@media (max-width: 768px) {
    .funnel-svg {
        max-width: 300px;
    }
    
    .funnel-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .label-title {
        font-size: 12px;
    }
    
    .label-value {
        font-size: 14px;
    }
    
    .label-percentage {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .sales-funnel-container {
        padding: 16px;
    }

    
    .user-cell {
        gap: 8px;
    }

    .component-section h2 {
        font-size: 20px;
    }
    
    .funnel-stats {
        grid-template-columns: 1fr;
    }
}
.chart-container {
    margin-bottom: 32px;
}

.chart-container h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.line-chart {
    position: relative;
}

.line-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.data-point {
    animation: fadeInPoint 0.5s ease-out forwards;
    opacity: 0;
}

.data-point:nth-child(7) { animation-delay: 0.2s; }
.data-point:nth-child(8) { animation-delay: 0.4s; }
.data-point:nth-child(9) { animation-delay: 0.6s; }
.data-point:nth-child(10) { animation-delay: 0.8s; }
.data-point:nth-child(11) { animation-delay: 1.0s; }
.data-point:nth-child(12) { animation-delay: 1.2s; }
.data-point:nth-child(13) { animation-delay: 1.4s; }

@keyframes fadeInPoint {
    to {
        opacity: 1;
    }
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    padding: 0 8px;
}

.chart-labels span {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}
.line-chart svg{
    width: 100% !important;
}

/* Chart section */
.chart-section {
    width: 100%;
    margin: 0px 0px 12px 0px;
}

.chart-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.chart-header {
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.chart-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.chart-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.chart-wrapper {
    padding: 2rem;
    height: 400px;
    position: relative;
}

/* Stats section */
.stats-section {
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
    letter-spacing: -0.025em;
}

.stat-change {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.stat-change.positive {
    color: #059669;
}

/* Responsive design */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 1rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .chart-wrapper {
        padding: 1rem;
        height: 300px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .dashboard-container {
        padding: 0.75rem;
    }

    .chart-section {
    width: 100%;
    margin: 12px 0px 12px 0px;
}
    
    .title {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .chart-header {
        padding: 1.25rem 1.5rem 0.75rem;
    }
    
    .chart-title {
        font-size: 1.25rem;
    }
}

/* Sales Pipeline Styles */
.sales-pipeline-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 12px 0px 12 0px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.pipeline-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
    text-align: center;
}

.pipeline-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    height: 80px;
}

.pipeline-stage {
    flex: 1;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    font-weight: 600;
    margin: 0 -8px;
}

.pipeline-stage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
}

/* Stage 1 - Price Quoted (Coral/Salmon) */
.stage-1::before {
    background: linear-gradient(
    90deg,
    #e0f2fe 0%,
    #87ceeb 100%
  );
}

/* Stage 2 - Negotiation (Yellow/Orange) */
.stage-2::before {
    background: linear-gradient(
    90deg,
    #87ceeb 0%,
    #4682b4 100%
  );
}

/* Stage 3 - PI Issues (Light Blue) */
.stage-3::before {
    background: linear-gradient(
    90deg,
    #4682b4 0%,
    #2e5984 100%
  );
}

/* Stage 4 - PI Counter Sign (Green) */
.stage-4::before {
    background: linear-gradient(
    90deg,
    #2e5984 0%,
    #1e3a5f 100%
  );
}

.stage-content {
    position: relative;
    z-index: 2;
    text-align: center;
    line-height: 1.2;
}

.stage-number {
    font-size: 12px;
    font-weight: 700;
}

.stage-percentage {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
}

.pipeline-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.pipeline-label {
    flex: 1;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
    padding: 0 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sales-pipeline-section {
        padding: 16px;
    }
    
    .pipeline-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .pipeline-container {
        height: 60px;
        margin-bottom: 12px;
    }
    
    .pipeline-stage {
        height: 45px;
        margin: 0 -6px;
    }
    
    .stage-number {
        font-size: 14px;
    }
    
    .stage-percentage {
        font-size: 12px;
    }
    
    .pipeline-label {
        font-size: 12px;
        padding: 0 4px;
    }
}

@media (max-width: 480px) {
    .pipeline-labels {
        gap: 4px;
    }
    
    .pipeline-label {
        text-align: center;
    }
    
    .stage-number {
        font-size: 12px;
    }
    
    .stage-percentage {
        font-size: 10px;
    }
}

/* Hover Effects */
.pipeline-stage {
    transition: all 0.3s ease;
    cursor: pointer;
}

.pipeline-stage:hover {
    transform: translateY(-2px);
}

.pipeline-stage:hover::before {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sub-nav-menu {
  display: none;
}

/* Show class to toggle menu */
.sub-nav-item.active .sub-nav-menu {
  display: inline;
}

#sidebar-menu > ul > li > a {
    color: White !important;
    display: block;
    padding: 12px 20px;
    margin: 4px 0px;
    background-color: #ffffff;
    border-left: 3px solid transparent;
}

.table-rep-plugin .btn-group.pull-right {
    float: right;
}

.pull-right {
    float: right;
}

.table-rep-plugin .btn-toolbar {
    display: block;
}

.btn-toolbar {
    margin-bottom: 20px;
}
