
.mtd-container { margin:20px 0; }
.mtd-tabs { list-style:none; padding:0; display:flex; border-bottom:2px solid #ccc; }
.mtd-tabs li { padding:10px 20px; cursor:pointer; border:1px solid #ccc; border-bottom:none; margin-right:5px; background:#f7f7f7; }
.mtd-tabs li.active { background:#fff; font-weight:bold; }
.mtd-content { border:1px solid #ccc; padding:15px; background:#fff; }
.mtd-tab-content { display:none; }
.mtd-tab-content.active { display:block; }
 
.variations{ width: 100%;}
/*-----------search form data-----------------------*/
 .financity-search-form { display: flex; flex-direction: column; /* stack elements vertically */ gap: 12px; /* spacing between fields */ max-width: 600px; margin: 20px auto; } .financity-search-form input.search-field, .financity-search-form select.search-category, .financity-search-form select.report_type_select{ width: 100%; /* full width */ padding: 12px 15px; border: 1px solid #ddd; border-radius: 6px; font-size: 15px; color: #333; } .financity-search-form select.search-category { background: #fff url("data:image/svg+xml,%3Csvg fill='%23333' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 10px center; background-size: 16px; appearance: none; } .financity-search-form button { align-self: flex-start; /* keep button left-aligned */ padding: 12px 25px; font-size: 15px; border-radius: 6px; cursor: pointer; }
 /* Pagination wrapper */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* Pagination links */
.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 14px;
    font-size: 15px;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover effect */
.pagination a:hover {
    background:#182559; /* WordPress blue */
    color: #fff !important;
    border-color: #0073e6;
}

/* Current page */
.pagination .current {
    background: #182559;
    color: #fff;
    border-color: #0073e6;
    font-weight: bold;
    cursor: default;
}

/* Disabled (like when no prev/next) */
.pagination .disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Prev / Next icons */
.pagination a.prev,
.pagination a.next {
    font-weight: bold;
}
/*----------------loader on blox-------------------------*/
.loader-overlay_cust {
    position: absolute; /* or fixed, depending on your needs */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top of other content */
    display: none; /* Initially hidden */
}

.spinner_cust {
    border: 0px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3498db; /* Blue spinner */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite; /* CSS animation for spinning */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* tooltip css code */

  /* Tooltip style */
  .custom-tooltip {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 9999;
    max-width: 3500px;         /* prevent tooltip from being too wide */
    word-wrap: break-word;    /* break long words */
    white-space: normal;      /* allow wrapping */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  /* Tooltip arrow */
  .custom-tooltip::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
  }

  /* Element with tooltip */
  .has-tooltip {
    cursor: pointer;
    color: #0078ff;
    font-weight: bold;
  }


.report_table_container table thead {
	th {
		color: #ffffff;
    background-color: #182559;
	}
}
 .report_table_container table
td {

	background-color: white !important;
    color: #000000;
	
}

/*
  .report_table_container {

	background: linear-gradient(45deg, #49a09d, #5f2c82);

}

.report_table_container table {
	width: 100%;
	border-collapse: collapse;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.report_table_container table th, .report_table_container table
td {
	padding: 15px;
	background-color: rgba(255,255,255,0.2);
	color: #fff;
}

.report_table_container table th {
	text-align: left;
}

.report_table_container table thead {
	th {
		background-color: #55608f;
	}
}

.report_table_container table tbody {
	tr {
        background-color: transparent;
		&:hover {
			background-color: rgba(255,255,255,0.3);
		}
	}
	td {
		position: relative;
		&:hover {
			&:before {
				content: "";
				position: absolute;
				left: 0;
				right: 0;
				top: -9999px;
				bottom: -9999px;
				background-color: rgba(255,255,255,0.2);
				z-index: -1;
			}
		}
	}
}
    */

    /* Container to hold both buttons side by side */
.btn-container {
    display: flex;
    align-items: center; /* Vertically aligns buttons */
    /* REMOVED: gap: 10px; */
    /* Explicitly setting gap to 0 if needed, although removing the line is enough: */
    gap: 0; 
}

/* Ensure no default margins are pushing them apart */
.download-btn, .refresh-btn {
    margin: 0; 
}


/* Existing Download Button Styling */
.download-btn {
    background-color: #182559; /* Blue color */
    color: white !important;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    /* Optional: To make the combined look more seamless, you might only round the outside corners */
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 160px;
    transition: background-color 0.3s ease; 
}

.download-btn:hover {
    background-color: #6f9979; /* Darker blue on hover */
}

.download-btn i {
    margin-right: 10px;
    font-size: 18px;
}

.download-btn span {
    line-height: 1; 
}

/* New Refresh Button Styling */
.refresh-btn {
    background-color: #6f9979; /* Green color */
    color: white !important;
    border: none;
    /* To sit flush with the other button, remove the 50% radius and adjust padding */
    padding: 12px; 
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px; /* Use standard radius */
    /* Optional: Only round the outside corners */
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    height: 53px; /* Ensure consistent height with the other button */
    width: 53px; 
    transition: background-color 0.3s ease, transform 0.6s ease;
}

.refresh-btn:hover {
    background-color: #45a049; /* Darker green on hover */
    /* Optional: still keep the spin effect */
    transform: rotate(90deg); 
}
.step_circle_number{
    background: #222960;
    border-radius: 22px;
    text-align: center;
    color: white;
    padding: 8px;
}
#search_company_form  .gdlr-core-container{
margin-left: 0px !important;
}