#generate-report-progress-bar{
	position: fixed;
	top: 0;
	width: 100%;
	left: 0;
	z-index:99999999;
}

.powered-content{
    margin: 30px 0;
}

.plogo{
    display: flex;
    align-items: center;
    justify-content: center;
}
.plogo img{
    max-width: 150px;
}

#notification-container{
	position: fixed;
	top: 10%;
	width: 25%;
	z-index:1100;
	
    width: 25%;
    left: 50%;
    transform: translate(-50%, -20%);
    -ms-transform: translate(-50%, -20%);
}

.text-teal {
    color: #084029 !important;
}

form sup{
	color:#d32111;
}

.virtual-progress-bar {
    height: 4px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.75;
    z-index: 1030;
}

.dataTables_wrapper .form-group {
    margin-bottom: 1.3rem;
}
.dataTables_wrapper .btn, .dataTables_wrapper.btn-default, .dataTables_wrapper .btn.dark{
    background: #4c4c5a;
    border-color: #4c4c5a;
    color: #fff;
;
}
.dataTables_wrapper .btn-sm{
	height:28px;
	border-radius: 0px !important;
}
.dataTables_wrapper .btn-xs.btn {
    line-height: 20px;
    padding: 5px;
}

.data-table-section .btn.btn-mini.btn-sm.default.dropdown-toggle{
	 background: #4c4c5a;
    border-color: #4c4c5a;
    color: #fff;
}

/* Main DataTable Container */
.dataTables_wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

/* Table Styling */
.dataTable {
    width: 100% !important;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
    margin-bottom: 0 !important;
}

/* Table Header */
.dataTable thead th {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 16px 20px;
    border: none;
    text-align: left;
    position: relative;
    border-bottom: none;
}

.dataTable thead th:first-child {
    border-top-left-radius: 12px;
}

.dataTable thead th:last-child {
    border-top-right-radius: 12px;
}

/* Sortable Headers */
.dataTable thead th.sorting,
.dataTable thead th.sorting_asc,
.dataTable thead th.sorting_desc {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dataTable thead th.sorting:hover,
.dataTable thead th.sorting_asc:hover,
.dataTable thead th.sorting_desc:hover {
    background: linear-gradient(135deg, #5a6fd8, #6b42a6);
    transform: translateY(-1px);
}

/* Sorting Icons */
.dataTable thead th.sorting:after,
.dataTable thead th.sorting_asc:after,
.dataTable thead th.sorting_desc:after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    opacity: 0.7;
}

.dataTable thead th.sorting:after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(255, 255, 255, 0.5);
    margin-top: -2px;
}

.dataTable thead th.sorting_asc:after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid white;
}

.dataTable thead th.sorting_desc:after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid white;
}

/* Table Body */
.dataTable tbody td {
/*    padding: 16px 20px;*/
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    color: #374151;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
}

.dataTable tbody tr {
    transition: all 0.3s ease;
}

.dataTable tbody tr:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dataTable tbody tr:hover td {
    background: transparent;
}

/* Odd/Even Row Styling */
.dataTable tbody tr:nth-child(even) td {
    background: rgba(248, 250, 252, 0.8);
}

.dataTable tbody tr:nth-child(odd) td {
    background: rgba(255, 255, 255, 0.6);
}

/* Search Box */
.dataTables_filter {
    float: right;
    margin-bottom: 20px;
}

.dataTables_filter label {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dataTables_filter input {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    margin-left: 8px;
    min-width: 250px;
}

.dataTables_filter input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
}

/* Length Menu */
.dataTables_length {
    float: left;
    margin-bottom: 20px;
}

.dataTables_length label {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dataTables_length select {
    padding: 8px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    margin: 0 8px;
    cursor: pointer;
}

.dataTables_length select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Info Text */
.dataTables_info {
    float: left;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

/* Pagination */
.dataTables_paginate {
    float: right;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.dataTables_paginate a.ui-button {
    display: inline-block;
    padding: 10px 16px;
    margin: 0 2px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    background: rgba(241, 245, 249, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dataTables_paginate a.ui-button:hover {
    background: rgba(226, 232, 240, 0.8);
    color: #374151;
    transform: translateY(-1px);
    border-color: rgba(102, 126, 234, 0.2);
}

.dataTables_paginate a.ui-button.current {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    border-color: transparent;
}

.dataTables_paginate a.ui-button.current:hover {
    background: linear-gradient(135deg, #5a6fd8, #6b42a6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.dataTables_paginate a.ui-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Previous/Next Buttons */
.dataTables_paginate a.ui-button.previous,
.dataTables_paginate a.ui-button.next {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e5e7eb;
}

.dataTables_paginate a.ui-button.previous:hover,
.dataTables_paginate a.ui-button.next:hover {
    background: white;
    border-color: #667eea;
    color: #667eea;
}

/* Processing Indicator */
.dataTables_processing {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 20px 30px;
    font-weight: 600;
    color: #667eea;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Empty Table */
.dataTables_empty {
    text-align: center;
    color: #64748b;
    font-style: italic;
    padding: 40px 20px !important;
    background: rgba(248, 250, 252, 0.5) !important;
}

/* Responsive Table */
.dataTables_wrapper .dataTables_scroll {
    overflow: auto;
    border-radius: 12px;
    clear: both;
}

.dataTables_scrollHead .dataTables_scrollHeadInner table {
    margin-bottom: 0 !important;
}

.dataTables_scrollBody {
    background: rgba(255, 255, 255, 0.3);
}

/* Clear Floats */
.dataTables_wrapper:after {
    content: "";
    display: table;
    clear: both;
}

/* Loading Animation */
@keyframes dtLoading {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.dataTables_processing {
    animation: dtLoading 1.5s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dataTables_wrapper {
        padding: 20px;
        border-radius: 16px;
    }
    
    .dataTables_filter,
    .dataTables_length,
    .dataTables_info,
    .dataTables_paginate {
        float: none;
        text-align: center;
        margin: 10px 0;
    }
    
    .dataTables_filter input {
        min-width: 200px;
        width: 100%;
        margin: 8px 0 0 0;
    }
    
    .dataTables_filter label {
        flex-direction: column;
        align-items: stretch;
    }
    
    .dataTable thead th,
    .dataTable tbody td {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .dataTables_paginate .paginate_button {
        padding: 8px 12px;
        margin: 0 1px;
        font-size: 0.85rem;
    }
}

/* Custom Action Buttons in Table */
.dt-button {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 4px;
}

.dt-button.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.dt-button.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.dt-button.btn-secondary {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.dt-button.btn-secondary:hover {
    background: #e2e8f0;
    color: #374151;
    transform: translateY(-1px);
}

.dt-button.btn-danger {
    background: #ef4444;
    color: white;
}

.dt-button.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

table.display tr.even.row_selected td,
table.display tr.odd.row_selected td {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #705cba;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.dynamic #hide-show-columns{
	color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

textarea.hyella-data{
    display:none !important;
}

.hyella-source-container textarea.hyella-data{
   display:block !important;
}

 .auth-form-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* Animated background particles */
.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.auth-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 0;
    width: 100%;
    max-width: 900px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    overflow: hidden;
    position: relative;
}

.auth-sidebar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 55px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.auth-sidebar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.sidebar-content {
    position: relative;
    z-index: 2;
}

.sidebar-logo {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 2rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.sidebar-logo img {
    width: 65%;
    height: 100%;
}

.sidebar-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.auth-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.auth-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #fff;
}

.auth-forms {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #64748b;
    font-size: 1rem;
}

.auth-form {
    display: block;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-form.hidden {
    display: none;
    opacity: 0;
    transform: translateX(30px);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
}

.form-input.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 4px;
    display: none;
}

.form-input.error + .error-message {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox {
    width: 18px;
    height: 18px;
    accent-color: #667eea;
}

.checkbox-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0px;
}

.auth-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.auth-btn:hover::before {
    left: 100%;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.auth-btn:active {
    transform: translateY(0);
}

.auth-btn:focus {
    outline: 0px;
}

.divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
    color: #64748b;
    font-size: 0.9rem;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
    z-index: 1;
}

.divider span {
    background: rgba(255, 255, 255, 0.95);
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

.forgot-password, .back-to-login {
    text-align: center;
    margin-top: 16px;
}

.forgot-password a, .back-to-login a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.forgot-password a:hover, .back-to-login a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.strength-meter {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-weak { background: #ef4444; width: 25%; }
.strength-fair { background: #f59e0b; width: 50%; }
.strength-good { background: #10b981; width: 75%; }
.strength-strong { background: #059669; width: 100%; }

.strength-text {
    font-size: 0.8rem;
    margin-top: 4px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .auth-sidebar {
        padding: 24px;
        min-height: 200px;
    }
    
    .sidebar-title {
        font-size: 1.5rem;
    }
    
    .auth-forms {
        padding: 24px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-login {
        grid-template-columns: 1fr;
    }
}

/* Custom animations */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInFromRight 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left {
    animation: slideInFromLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-password-visibility {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    color: #667eea;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #667eea rgba(226, 232, 240, 0.3);
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(226, 232, 240, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}


::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8, #6b42a0);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transform: scale(1.05);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, #4f5bc9, #5d3896);
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.6);
}

::-webkit-scrollbar-corner {
    background: rgba(226, 232, 240, 0.3);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
}

.qq-upload-list {
    list-style: none;
    margin: 5px;
    padding: 0;
}

.qq-upload-list li {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.qq-upload-fail {
    background: #fff0f0;
    border-left: 4px solid #e74c3c;
    color: #c0392b;
}

.qq-upload-file {
    flex: 1;
    font-weight: 500;
}

.qq-upload-size {
    margin-left: 12px;
    color: #888;
    font-size: 13px;
}

.qq-upload-failed-text {
    margin-left: 12px;
    color: #e74c3c;
    font-weight: bold;
    font-size: 13px;
}