/* --- Overall Wrapper Styles --- */
.contentbarwrapper {
    background-color: #e6faed;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 15px;
    width: 100%;
    height: auto; /* Keeping fixed height */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
p {
    margin-top: 0px !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
    margin-bottom: 1.2em !important;
    font-size: 16px !important;
}

h3{
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
}



/* Adjust button spacing if needed */
.button-group-left button {
    /* You can add more specific styling here if needed,
       but Bootstrap's me-2 class usually handles spacing well. */
}

.icon-button {
    background-color: #e2e8f0; /* Your desired background color */
    border: 1px solid #cbd5e0; /* Optional: A subtle border */
    color: #333; /* Text/icon color */
    padding: 8px 10px; /* This is what controls the height */
    cursor: pointer;
    font-size: 14px;
    display: inline-flex; /* Allows icon and text to sit nicely side-by-side */
    align-items: center; /* Vertically aligns icon and text */
    gap: 8px; /* Space between icon and text */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
}

/* Ensure the card-body uses flexbox to position items */
.card-body {
    align-items: center; /* Vertically center items */
    justify-content: space-between; /* Push buttons to left, search to right */
    /* You might need to adjust padding or other properties of card-body as well */
}
.p-4 {
    /* No padding declaration here */
}

/* Re-evaluate search box width if necessary, though it should still align right */
.card-body .input-group.alt-input-group-custom-border {
    /* Your existing styles for width, flex-grow, and margin-left: auto;
       should continue to work effectively to push it right. */
}

/* --- Search Box Styles --- */
/* Target the specific input group for the search box to align right and set width */
.card-body .input-group.alt-input-group-custom-border {
    width: 50% !important; /* Set width to half, override Bootstrap's w-100/w-sm-auto */
    flex-grow: 0 !important; /* Prevent it from growing to fill space */
    margin-left: auto; /* Push it to the right within its flex container */
    margin-right: 0; /* Ensure no extra right margin */
}


/* These are general styles for the input group that were already present */
.alt-input-group-custom-border .input-group-text,
.alt-input-group-custom-border .form-control {
    border-color: #ced4da;
}

/* --- Alt-Window Specific Styles (kept for completeness) --- */
.alt-window-bg-color { background-color: #ffffff; }
.alt-window-border-color { border: 1px solid #28a745; }
.alt-button-bg-color { background-color: #ff3333; border-color: #067d3c; }
.alt-button-bg-color:hover { background-color: #dc2626; border-color: #a31d1d; }
.alt-title-bar-bg { background-color: #067d3c; }
.alt-traffic-light {
    width: 12px; height: 12px; background-color: white; border-radius: 50%; display: inline-block;
}
.alt-window-card { width: 100%; margin: 0 auto;}
.alt-title-bar-control-btn {
    width: 20px; height: 20px; color: #dc2626; font-weight: bold; font-size: 0.75rem; padding: 0;

}
.alt-input-group-custom-border .input-group-text,
.alt-input-group-custom-border .form-control { border-color: #ced4da; }

/* --- New Button Styles (Added/Updated) --- */


.icon-button:hover {
    background-color: #d1d9e2; /* Slightly darker on hover */
}

.icon-button i {
    /* Styles specifically for the icon if needed, though usually inherited */
    font-size: 18px; /* Make the icon slightly larger than text */
}




/* Styles for the main container that holds your stats and the progress bar */
.data-stats {
    width: 100%; /* Ensures this container takes up the full width of its parent */
    display: flex; /* Activates Flexbox for its direct children */
    justify-content: space-between; /* Distributes space: first item(s) to the left, last item(s) to the right, and even space between others */
    align-items: center; /* Vertically centers all flex items within this container */
    padding: 15px; /* Adds internal spacing */
    background-color: #fff; /* White background */
    border-radius: 8px; /* Slightly rounded corners */
    margin: 0 auto; /* This will center the .data-stats container itself if it has a max-width and its parent allows it to shrink */
    font-size: 14px;
    /* margin-left: 12px; - This will push the entire .data-stats container 12px from the left.
       If you want the .data-stats container to be truly centered (with 'margin: 0 auto;'),
       this 'margin-left' will override the 'auto' on the left. Consider removing it if centering is the primary goal. */
}

/* Styles for the progress bar container */
.progress-container {
    border-radius: 5px;
    height: 25px;
    overflow: hidden;
    font-size: 14px;
    text-align: center;
    width: 250px; /* Gives the progress bar a fixed width */
    margin-left: auto; /* *** THIS IS THE KEY ***
                           It consumes all available space to its left, pushing this item
                           (the .progress-container) to the far right within its flex parent (.data-stats). */
    margin-right: 20px; /* Optional: Adds 20px of space *between* the right edge of the progress bar
                           and the right edge of its parent (.data-stats). If you want it flush, remove this. */
    border: 1px solid #28a745; /* Debugging: Shows the boundary of .progress-container */
}



 /* Paragraph styling */
    p {
        margin-top:20px;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 1.2em; /* More space between paragraphs */
        font-size: 14px; /* Slightly larger font size for body text */
    }

    /* Strong/bold text styling */
    p strong {
        color: #007bff; /* A distinct color for bolded keywords */
        font-weight: 600; /* Make bold text a bit heavier */
    }

    /* Headings (if they were to be re-added, ensure they fit the new aesthetic) */
    h1, h2, h3 {
        color: #28a745; /* A pleasant green for headings */
        margin-bottom: 0.8em;
        font-weight: 700;
    }
    h1 { font-size: 24px; margin-left:20px; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    
.table-container{
    position: absolute;
}
.sticky_header{
    position: sticky;
    top: 0;
    z-index: 999;
}
.search_header {
}
.header_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding: 10px;
    background: #f2f2f2;
    gap: 5px;
}
.header_list Button{
    border: 1px solid gray;
    border-radius: 6px;
    padding: 0px 8px;
}
.header_list li{
    padding: 8px 15px;
    background: rgba(211, 211, 211, 1);
    border-radius: 6px;
    transition: 0.3s;
    cursor: pointer;
    font-size: 14px;
}
.header_list li:hover{
    background: #067a3a;
    color: #fff;
}
.header_table_menu{
    width: 200px;
    height: 100vh;
    background: #ddd;
    position: absolute;
    right:0 ;
    z-index: 99;
    display: none;
}
.header_table_menu li{
    padding: 10px 5px;
}
.header_list li {
    list-style-type: none;
}
.search_header .left_Col{
    display: flex;
    align-items: center;
    width: 100%;
   justify-content: space-between;
}
.search_header .right_col{
     padding-top: 20px;
     display: flex;
     align-items: center;
}


.search_header .left_Col select{
    width: 300px;
    padding: 0px 10px;
    height: 38.78px;
    border: 1px solid gray;
    border-radius: 6px;
    background: #f2f2f2;
    position: relative;
}

.search_header .left_Col Button{
    padding: 5px 20px;
    border: 1px solid gray;
    border-radius: 6px;
    height: 38.78px;
}
.search_header {
    background-color: #f2f2f2;
    padding: 10px 10px;
}

.search_header .right_col input{
    width: 100%;
    padding: 0px 10px;
    height: 38.78px;
    border: 1px solid gray;
    outline: none;
    border-radius: 6px 0px 0px 6px;
    margin-left: 8px;
}
.search_header .right_col Button {
    padding: 0px 10px;
    height: 38.78px;
    border: 1px solid gray;
    border-radius: 0px 6px 6px 0px;
    outline: none;
}


.custom-select {
  position: relative;
  width: 200px;
  font-family: sans-serif;
}

.select-selected {
  background-color: #f1f1f1;
  padding: 8px 10px;
  border: 1px solid #aaa;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
}
.select-selected .fa-sort-down{
    position: relative;
    top: -2px;
    color: #067a3a;
}
.select-selected .fa-filter{
    padding-right: 20px;
    font-size: 13px;
    color: #067a3a;
}
.select-selected {
    font-size: 13px;
}
.select-items {
  position: absolute;
  background-color: #fff;
  border: 1px solid #aaa;
  z-index: 99;
  width: 100%;
  display: none;
  font-size: 12px;
}

.select-items div {
  padding: 10px;
  cursor: pointer;
}

.select-items div:hover {
  background-color: #ddd;
}
#exportButton {
    padding: 7px 12px;
}
#overviewLink {
    padding: 7px 12px;
}
.search_header .left_Col Button {
    height: auto;
}
.crawl_box label{
    font-size: 14px;
}
.crawl_box #quantity{
    outline: none;
    padding-left: 8px;
}
.Search_box_container{
    display: flex;
    align-items: center;
    margin-left: auto;
    width: 32%;
}
.connerct_box{
    display: flex;
    align-items: center;
    column-gap: 25px;
    border: 1px solid gray;
    padding: 7px 12px;
    border-radius: 6px;
}
.connerct_box .connect_disconnect{
    padding-left:30px;
}
.right_col Button{
   background: transparent !important;
    color: #000 !important;
}
.right_col_button_list{
    width: 68%;
    display: flex !important;
    column-gap: 25px !important;
}
.search_header .left_Column{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.search_header .connerct_box button{
    padding: 0 5px;
}
.search_header .connerct_box img {
    width: 17px;
    position: relative;
    top: -2px;
    left: -3px;
}