[grid-view] tr:nth-child(2n) {
  background: #f8f8f8 !important;
}

[grid-view] td, th {
  border: none !important;
}

[grid-view] td {
  height: 43px;
  padding-left: 10px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-right: 10px !important;
}

[grid-view] th {
  background: #1b5e20 !important;
  color: white !important;
  padding-left: 6px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-right: 6px !important;
  
}

[grid-view] .table-responsive {
  
  border: none;
}

[grid-view] tr.r:hover td {
    background-color: #edfdf2;
}

.table-vScroll {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    overflow: hidden;
}

.table-link {
    color: black;    
}

div:has(> .table-responsive) {
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px !important;
}

.data-grid-pageinfo > .btn-group.pull-right:first-child {
  display: none;
}

.data-filter{
    border: none;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

a:hover {
    color: #1b5e20;    
}


.action-bar {
    border: none !important;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.amount-db {
    color : #2e71cc;
}

.amount-cr {
    color : #2ecc71;
}

.btn-success {
    color : #1b5e20;
    background-color: rgba(0, 168, 107, 0.1);
    border: none;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-mob {
    padding-top: 12px;
    padding-bottom: 12px;
}

.btn-danger {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-default {
    
}





       /* FAB and Modal Styles */
        .fab {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(27, 94, 32, 0.21);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(8.5px);
            -webkit-backdrop-filter: blur(8.5px);
            border: 1px solid rgba(255, 255, 255, 0.14);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
            overflow: hidden;
            z-index: 100;
        }

        .fab:hover {
            background-color: #1b5e20;
            box-shadow: 0 8px 24px rgba(27, 94, 32, 0.21);
        }

        .fab:active {
            transform: scale(0.6);
        }

        .fab svg {
            width: 40px;
            height: 40px;
            fill: none;
            stroke: white;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .fab-ripple {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
            transform: scale(0);
            opacity: 1;
            pointer-events: none;
        }

        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 22, 38, 0.6);
            backdrop-filter: blur(4px);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 1000;
        }

        .modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            width: 90%;
            max-width: 400px;
            background: white;
            border-radius: 20px;
            padding: 25px;
            transform: translateY(30px);
            opacity: 0;
            transition: transform 0.4s ease, opacity 0.4s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .modal.active .modal-content {
            transform: translateY(0);
            opacity: 1;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .modal-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary);
        }

        .close-modal {
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            color: #5e6e82;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .action-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }

        .action-button {
            padding: 20px 15px;
            border-radius: 12px;
            border: none;
            background-color: #f7faff;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: background-color 0.2s ease, transform 0.2s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .action-button:hover {
            background-color: #edf2fd;
            transform: translateY(-2px);
        }

        .action-button:active {
            transform: translateY(1px);
        }

        .action-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .action-icon.transfer {
            background-color: rgba(0, 168, 107, 0.1);
        }

        .action-icon.balance {
            background-color: rgba(0, 115, 230, 0.1);
        }

        .action-label {
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        .action-button-green {
            color : #1b5e20;
            background-color: #f7fff7;
        }
        
        .action-button-green:hover {
            background-color: #edfdf2;
            color: #2fb463;
        }
        
        .action-button-blue {
            color : #01579b;
        }

        .action-description {
            font-size: 0.8rem;
            color: #5e6e82;
            text-align: center;
        }

        .transfer-form, .balance-form {
            display: none;
        }
    
        .active-form {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
         .paging-total-record {
            display : none !important;
         }

.account-overview-dark-green {
  padding: 10px 25px;
  background: linear-gradient(135deg, #11261A 0%, #134023 100%);
  color: white;
  border-radius: 20px;
  margin: 10px 0px;
  box-shadow: 0 8px 20px rgba(26, 54, 93, 0.2);
  position: relative;
  overflow: hidden;
}

.account-overview-green {
  padding: 25px;
  background: linear-gradient(135deg, #134023 0%, #347338 100%);
  color: white;
  border-radius: 20px;
  margin: 20px 0px;
  box-shadow: 0 8px 20px rgba(26, 54, 93, 0.2);
  position: relative;
  overflow: hidden;
}

.account-overview-blue {
  padding: 10px 25px;
  background: linear-gradient(135deg, #132342 0%,  #3456A3 100%);
  color: white;
  border-radius: 20px;
  margin: 10px 0px;
  box-shadow: 0 8px 20px rgba(26, 54, 93, 0.2);
  position: relative;
  overflow: hidden;
}

.account-overview-red {
  padding: 10px 25px;
  background: linear-gradient(135deg, #421313 0%,  #A33434 100%);
  color: white;
  border-radius: 20px;
  margin: 10px 0px;
  box-shadow: 0 8px 20px rgba(26, 54, 93, 0.2);
  position: relative;
  overflow: hidden;
}


 @media only screen and (min-width: 768px) {
   .account-overview-dark-green,  .account-overview-red, .account-overview-blue, .account-overview-green {  
       margin: 10px 25px !important;
   }
 }


