/* General layout
H1 - #000
H2 - #0073e6
H3 - #301bf1
H4 - #ffa100
*/
body, html {
    margin: 0;
    padding: 0;
    padding-top: 100px; /* Add padding to the top of the body to prevent content from hiding under the header */
    height: 100%;
    font-family: "Hanken Grotesk", sans-serif;
}


body { background: #ECEFF1; color: rgba(0,0,0,0.87); font-family: Hanken Grotesk, sans-serif; margin: 0; padding: 0; }
#message { background: white; max-width: 360px; margin: 100px auto 16px; padding: 32px 24px; border-radius: 3px; }
#message h2 { color: #0073e6; font-weight: bold; font-size: 16px; margin: 0 0 8px; }
#message h1 { font-size: 22px; font-weight: 300; color: rgba(0,0,0,0.6); margin: 0 0 16px;}
#message p { line-height: 140%; margin: 16px 0 24px; font-size: 14px; }
#message a { display: block; text-align: center; background: #039be5; text-transform: uppercase; text-decoration: none; color: white; padding: 16px; border-radius: 4px; }
#message, #message a { box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); }
#load { color: rgba(0,0,0,0.4); text-align: center; font-size: 13px; }
@media (max-width: 600px) {
  body, #message { margin-top: 0; background: white; box-shadow: none; }
  body { border-top: 16px solid #ffa100; }
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    background-color: #f0f0f0;
    position: fixed;  /* Makes the header fixed at its position */
    top: 0;           /* Aligns the header at the top of the viewport */
    left: 0;          /* Aligns the header at the left of the viewport */
    z-index: 1000;    /* Ensures the header stays on top of other content */
}

.logo img {
    display: block;
    margin-right: 20px;
}

.menu-bar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.menu-bar li {
    margin-left: 10px;
}

.menu-bar a {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    color: black;
    transition: background-color 0.2s;
    font-size: 16px;
}

.menu-bar a:hover {
    background-color: #ddd;
}


section {
    margin-left: 0; /* Remove left margin */
    width: 90%; /* Adjust width to take full space */
    padding: 20px;
    margin: 0 auto; /* Center the section horizontally */
}

.two-columns {
    margin-left: 0; /* Remove left margin */
    width: 90%; /* Adjust width to take full space */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows items to wrap onto the next line if they run out of space */
    margin: 0 auto; /* Center the section horizontally */
}

.column {
    width: 49%;
    border: 1px solid #ccc;
    box-sizing: border-box;
    height: 150px; /* You can adjust the height as needed */
}

h1 {
    font-size: 22px;
    font-family: 'Raleway', sans-serif;
    text-align: center; /* Center align text in h1 */
    color: #040422; font-weight: bold; font-size: 16px; margin: 0 0 8px;
}

h2 
{ 
    color: #0073e6; 
    font-weight: bold; 
    font-size: 16px; 
    margin: 0 0 8px; 
}

h3 {

    color: #301bf1;
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
}

p {
    font-size: 18px;
    word-wrap: break-word; /* Breaks the text to prevent overflow */
}

/* Media query for viewports less than 900 pixels */
@media screen and (max-width: 900px) {
    .two-columns {
        flex-direction: column; /* Stacks columns on top of each other */
    }

    .column {
        width: 100%; /* Takes the full width of its parent container */
        margin-bottom: 5%; /* Adds a bottom margin between stacked columns */
    }
}


#graphContainer {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

canvas {
    background-color: #fff;
    padding: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* Navigation Styles */
nav ul li a {
    /* Specific nav styles here */
    text-decoration: none;
    white-space: nowrap;
    color: var(--colors-textAlt);
    margin-right: 1.0rem;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 18px;
    letter-spacing: -0.1px;
    line-height: 20px;
    border-bottom: 3px solid transparent;
    display: inline-flex;
    padding-bottom: 4px;
    padding-top: 7px;
}

#datePicker {
    margin: 0px;
    display: flex;
    justify-content: left;
    align-items: left;
    gap: 10px;
}

#datePicker input[type="text"] {
    padding: 8px;
    width: 150px; /* Adjust width as needed */
    border: 1px solid #ccc;
    border-radius: 4px;
}

#datePicker button {
    padding: 8px 16px;
    background-color: #151DD5; /* Green background */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#datePicker button:hover {
    background-color: #151DD5; /* Darker green */
}

#statsDisplay {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    background-color: #f4f4f4; /* Light grey background */
    padding: 10px; /* Adds space inside the div */
    border: 1px solid #ccc;
    border-radius: 5px; /* Rounded corners */
    margin-top: 20px; /* Space above the div */
    color: #333; /* Dark grey text color */
}

    #statsDisplay strong {
        color: #0056b3; /* Blue color for labels */
        font-weight: normal; /* Normal font weight for labels */
    }
    #statsDisplay div.metric {
        margin-bottom: 2.5px;
    }
    /* recommendation for above error

const colors = {
    clicks: 'rgba(33, 252, 8, 1)',      // Green
    impressions: 'rgba(21, 82, 204, 1)', // Blue
    ctr: 'rgba(227, 77, 16, 1)',        // Orange
    position: 'rgba(123, 0, 12, 1)'     // Dark Red
}

/* recommendation for above error
:root {
    --clicks-color: rgba(33, 252, 8, 1);
    --impressions-color: rgba(21, 82, 204, 1);
    --ctr-color: rgba(227, 77, 16, 1);
    --position-color: rgba(123, 0, 12, 1);
}
*/

.four-column-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 0px;
    width: 90%; /* Matches the section width */
    margin: 5% auto; /* Centered with the same top and bottom margin */
    box-sizing: border-box; /* Includes padding and border in the width */
}
.four-column-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px; /* Reduced gap for a tighter layout */
    width: 90%; /* Ensures it fits well within the layout context */
    margin: 0% auto; /* Centered layout */
    box-sizing: border-box;
}

.column {
    padding: 5px; /* Minimal padding to maximize content area */
    border: 1px solid #ccc;
	width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    height: auto; /* Allows column height to grow with content */
}

.column h2 { 
    color: #0073e6; 
    font-weight: bold; 
    font-size: 16px; 
    margin: 0 0 8px; 
}

@media screen and (max-width: 1600px) {
    .four-column-section {
        grid-template-columns: repeat(2, 1fr); /* Adjusts to 2 columns at 1600px */
    }
}

@media screen and (max-width: 768px) {
    .four-column-section {
        grid-template-columns: 1fr; /* Single column layout for smaller screens */
    }
}

#metaTitle {
    font-weight: bold;
    color: #333;
}

#metaDescription {
    color: #666;
}
.two-column-section {
    margin-left: 0%; /* Retain left margin for spacing from the sidebar */
    margin-right: 5%; /* Add right margin for symmetry */
    width: auto; /* Allow width to adjust based on the margin settings */
    display: flex;
    flex-wrap: wrap; /* Ensures columns wrap instead of overflowing */
    gap: 15px;
}

.column {
    flex: 1; /* Allows flexible growth based on screen size */
    padding: 10px; /* Consistent padding */
    box-sizing: border-box; /* Includes padding in width calculation */
    min-width: 45%; /* Ensures columns don't get too narrow */
}

#myChartSingle {
    max-width: 100%; /* Allows the chart to resize within its container */
    height:100px; /* Maintains aspect ratio */
}

/* Media queries for responsiveness */
@media screen and (max-width: 900px) {
    .two-column-section {
        flex-direction: column;
    }

    .column {
        min-width: 100%; /* Columns take full width on smaller screens */
    }
}

/* Adjusting the main content area */




#visitLinkButton {
    padding: 10px 20px;
    background-color: #151DD5; /* Green */
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 10px 2px;
    cursor: pointer;
    border-radius: 8px;
}

/* Define hover effect */
#visitLinkButton:hover {
    background-color: #151DD5;
}
#urlTextInput {
    width: 800px; /* Specific width */
    background-color: #f8f8f8; /* Light grey background */
    cursor: text; /* Indicates it's text input */
    border: 1px solid #ccc; /* Add a border for better visual structure */
    padding: 8px; /* Padding for better text alignment */
    font-size: 16px; /* Set font size for readability */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for background and text color */
}

#urlTextInput:focus {
    background-color: rgba(0, 51, 102, 0.2); /* Dark blue with transparency */
    color: #000000; /* White text color when focused */
    border-color: #0056b3; /* Optional: change border color on focus */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for background and text color */
}

.one-column-section {
    margin-left: 0%; /* Retain left margin for spacing from the sidebar */
    margin-right: 5%; /* Add right margin for symmetry */
    width: auto; /* Allow width to adjust based on the margin settings */
    display: flex;
    flex-wrap: wrap; /* Ensures columns wrap instead of overflowing */
    gap: 15px;

}
#table-container .one-column-section {
    width: 100%;
}
#table-container {
    width: 100%; /* Ensure the container takes up the full width */
}

#table-container .one-column-section {
    width: 100%; /* Ensure the section takes up the full width */
    max-width: 1200px; /* Optional: Set a max-width if needed */
    margin: 0 auto; /* Center align if max-width is set */
}

#metadata-table {
    width: 100%; /* Make the table take up the full width of its container */
    table-layout: fixed; /* Optional: Fixed layout to distribute columns evenly */
}




.column {
    flex: 1; /* Takes full width of the section */
    padding: 20px; /* Consistent padding as two-column setup */
    background-color: #f8f8f8; /* Optional background color */
    border-radius: 5px; /* Optional rounded corners */
    box-sizing: border-box; /* Includes padding in width calculation */

    
}

.custom-paragraph {
    line-height: 1.0; /* Adjust the line-height as needed */
}
/*  ---------------------------------------- this is the area where body of suggestions can be changed ----------------------------------------------------------   */

#bodyContent {
    font-family: "Hanken Grotesk", sans-serif;

}
#bodyContentDiv .suggestions ul {
    list-style-type: none; /* This hides the bullets */
}

#bodyContentDiv .suggestions li {
    color: blue; /* Ensures the text color is blue */
}

#bodyContent .suggestions li {
    color: blue; /* Replace 'yourColor' with the color you want for suggestion text */
}

/* Style for the main content container */
#bodyContentDiv {
    font-family: "Hanken Grotesk", sans-serif;
    background-color: #f9f9f9; /* Light grey background for the content area */
    padding: 50px; /* Adds padding around the content */
    border-radius: 8px; /* Rounds the corners of the content container */
    margin: 10px auto; /* Centers the container with auto margins and adds space */
    max-width: 800px; /* Restricts maximum width for readability */
}

/* Style for each content item */
.content-item {
    margin-bottom: 2.5px;
    padding: 15px;
    background-color: white; /* White background for each content block */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow for 3D effect */
    border-radius: 5px; /* Rounds the corners of each content item */
}

/* Style headers differently to stand out */
.content-item h2 { 
    color: #0073e6; 
    font-weight: bold; 
    font-size: 16px; 
    margin: 0 0 8px; 
}

/* Style for paragraphs to enhance readability */
.content-item p {
    color: #666; /* Lighter text color for body text */
    line-height: 1.6; /* Spacing between lines */
}

/* Styles for the suggestions list */
.suggestions {
    list-style-type: none; /* Removes bullet points from the list */
    padding-left: 0; /* Removes padding */
}

/* Style individual list items */
.suggestions li {
    background-color: #e9e9e9; /* Light grey background for list items */
    padding: 5px 10px; /* Padding inside each list item */
    margin-top: 5px; /* Space between list items */
    border-radius: 3px; /* Rounded corners for list items */
    color: blue; /* Color for text inside suggestions */
}


/* --------------------------------------------------------------------------------------Sidebar setup */
#sidebar {
    position: fixed;
    top: 96px;
    left: 0;
    width: 220px; /* Increased width slightly */
    height: calc(100% - 96px);
    background-color: #1f1b2f;
    color: white;
    padding-top: 40px ;
    padding-left: 10px;
    overflow-wrap: break-word;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 10px; /* Smaller font size to ensure text fits within the padding */
}

#sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0; /* Ensure no default margin is present */
}

#sidebar a {
    color: white;
    font-family: "Hanken Grotesk", sans-serif;
    text-decoration: none;
    padding: 8px; /* Reduced padding */
    display: block;
    box-sizing: border-box; /* Include padding and border in the width and height */
    font-size: 14px; /* Smaller font size to ensure text fits within the padding */

}

#sidebar a:hover {
    background-color: #555;
}
/* ----------Potential color scheme
Primary Color (Header and Important Elements): Deep Navy Blue (#003366). This color is professional and has a strong presence without being too overpowering.
Secondary Color (Sidebar and Accents): Soft Gray (#F4F4F8). This will keep the sidebar and background areas light and non-distracting, enhancing the readability of your content.
Accent Color (Buttons and Links): Vibrant Teal (#007B8F). This adds a modern pop of color that is attractive but still maintains a professional tone.
Text Color: Dark Gray (#333333). This is easier on the eyes compared to pure black and works well for text on lighter backgrounds.
*/

/* --------------------------------Style for the submenu */
.submenu {
    display: none; /* Hide submenu by default */
    position: absolute;
    background-color: #fff; /* Background color of submenu */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Box shadow for submenu */
    z-index: 1; /* Ensure submenu appears above other content */
    list-style-type: none;
}

/* Style for submenu items */
.submenu li {
    padding: 10px; /* Padding for submenu items */
}

/* Style for submenu item links */
.submenu li a {
    color: #333; /* Text color of submenu item links */
    text-decoration: none; /* Remove underline from submenu item links */
    display: block;
}

/* Hover effect for submenu items */
.submenu li:hover {
    background-color: #f0f0f0; /* Background color of submenu item on hover */
}

/* Show submenu when parent menu item is hovered */
.menu-bar li:hover .submenu {
    display: block;
}

/* Dropdown style adjustments */
select#urlDropdown {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 12px;
    padding: 8px 30px 8px 10px;
    border-radius: 5px;
    background-color: white;
    color: #333;
    border: 2px solid #ccc;
    transition: border-color 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: white url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 140 140"><path fill="%23000" d="M129 35l-61 70-61-70h122z"/></svg>') no-repeat right 10px center;
    padding-right: 0px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 12px;
    width: 100%; /* Default to full width on smaller screens */

    @media (min-width: 768px) {
        width: 100%; /* Fixed width on larger screens */
    }
}


select#urlDropdown:hover {
    border-color: #888; /* Hover border color */
}

select#urlDropdown:focus {
    border-color: #0056b3; /* Focus border color */
    outline: none;
}

#myChartSingle {
    width: 600px;
    height: 400px;
}
.dateInput {
    background-color: #f9f9f9; /* Light gray background */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px; /* Space between elements */
}

.dateInput label {
    font-size: 14px;
    color: #333; /* Dark gray for text */
}

.dateInput input[type="date"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 12px;
    background-color: white;
    cursor: pointer; /* Cursor changes to pointer to indicate it's clickable */
}

.dateInput button {
    padding: 5px 10px;
    background-color: #151DD5; /* Green background */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.dateInput button:hover {
    background-color: #151DD5; /* Darker green on hover */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Slight elevation effect */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .dateInput {
        flex-direction: column;
        align-items: stretch;
    }

    .dateInput label {
        margin-bottom: 2.5px;
    }

    .dateInput input[type="date"],
    .dateInput button {
        width: 100%; /* Full width for smaller screens */
    }
}



#displayUrl a {
    text-decoration: none;  
    color: blue; 
}

#displayUrl {
    font-size: 12px; /* Adjust the font size as needed */
    color: #333; /* Dark grey color for text */
    display: flex;
    align-items: center;
    gap: 10px; /* Space between text and icon */
}

#displayUrl a {
    color: #007BFF; /* Blue color for the link */
    text-decoration: none; /* Removes underline from the link */
    position: relative;
    padding-right: 20px; /* Space for the arrow icon */
}

#displayUrl a::after {
    content: '\2192'; /* Unicode for right arrow */
    position: absolute;
    right: 0; /* Position right arrow at the end of the link */
    top: 0; /* Align top of the arrow with the link */
    color: #007BFF; /* Blue color for the arrow */
    font-size: 14px; /* Size of the arrow */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

#displayUrl a:hover::after {
    transform: translateX(5px); /* Move the arrow to the right on hover */
}

.six-column-section {
    margin-left: 0%; /* Consistent left margin */
    margin-right: 5%; /* Consistent right margin */
    width: auto; /* Width adjusts based on the margin settings */
    display: flex;
    text-align: center; /* Ensure text is centered */
    flex-wrap: wrap; /* Allows columns to wrap if they don't fit */
    gap: 15px; /* Space between columns */
}


.six-column {
    flex: 1; /* Flexible growth to occupy available space */
    padding: 0px; /* Consistent padding */
    box-sizing: border-box; /* Include padding in width calculation */
    min-width: 15%; /* Minimum width to prevent columns from getting too narrow */
    border: 1px solid #ccc; /* Uniform border */
    background-color: #f9f9f9; /* Light grey background, same as two-column */
    border-radius: 5px; /* Rounded corners */
    height: auto;
}
/* Adjust heading sizes within the six-column section */
.six-column h1 {
    font-size: 18px; /* Adjust as needed */
}

.six-column h2 { 
    color: #0073e6; 
    font-weight: bold; 
    font-size: 16px; 
    margin: 0 0 8px; 
}

.six-column h3 {
    color: #301bf1;

    font-size: 14px; /* Adjust as needed */
}

/* Adjust responsiveness for smaller screens */
@media screen and (max-width: 1200px) {
    .six-column {
        min-width: 30%; /* Larger minimum width for better readability on medium screens */
    }
}

@media screen and (max-width: 900px) {
    .six-column-section {
        flex-direction: row; /* Maintain row direction, adjust column widths */
        flex-wrap: wrap; /* Allow wrapping */
    }
    
    .six-column {
        min-width: 50%; /* Two columns per row on smaller screens */
    }
}

@media screen and (max-width: 768px) {
    section {
        margin-left: 0;
        width: 100%; /* Section takes full width on smaller screens */
        padding: 10px; /* Reduce padding to save space */
    }

    .six-column {
        min-width: 100%; /* One column per row on the smallest screens */
    }

    #sidebar {
        width: 100%; /* Sidebar takes full width at smaller breakpoints */
        position: relative; /* Changes position to flow in document stream */
        height: auto; /* Adjust height based on content */
    }
}#internalLinksContainer {
    font-size: 18px;
    text-align: left; /* Centers the text */
}

#internalLinksContainer ol {
    list-style-type: decimal; /* Uses numbers for list items */
    padding: 0; /* Removes padding */
    margin: 0; /* Removes margin to align everything properly */
}


#internalLinksContainer a {
    text-decoration: none; /* Removes underline from links */
    color: inherit; /* Ensures the links use the same color as the container for consistency */
    pointer-events: none; /* Disables all pointer events, making the link non-clickable */
    cursor: default; /* Changes cursor to default to indicate non-interactive */
}


#internalLinksContainer ul {
    list-style-type: none; /* Removes bullets from the list */
    padding: 0; /* Removes padding */
    margin: 0; /* Removes margin to align everything properly */
}

#internalLinksContainer a {
    text-decoration: none; /* Removes underline from links */
    color: inherit; /* Ensures the links use the same color as the container for consistency */
    pointer-events: none; /* Disables all pointer events, making the link non-clickable */
    cursor: default; /* Changes cursor to default to indicate non-interactive */
}

.flesch-score {
    font-size: 18px;
    text-align: center !important;
    margin-bottom: 2.5px;
    font-weight: 200; /* Sets the font weight to light */
    align-items: flex-start; /* Aligns children vertically to the top */
}

.reading-ease-label {
    font-size: 12px;
    font-weight: bold;
    display: block; /* This makes the content appear on a new line */
}

.reading-ease {
    font-size: 12px;
    font-family: 'Raleway', sans-serif;
}

#linksCountContainer {
    font-size: 18px;
    color: #1C3ADD; /* Set the text color to the specified blue */
    text-align: center; /* Center-aligns the text horizontally */
    align-items: flex-start; /* Aligns children vertically to the top */
    height: 100px; /* Set a fixed height for the container (adjust as needed) */
    font-weight: 200; /* Sets the font weight to light */
}


#totalClicks,
#totalImpressions,
#averageCTR,
#averagePosition {
    font-size: 18px;
  margin: 10px 0;
  font-weight: 200; /* Sets the font weight to light */

}

#totalClicks {
  color: #ff6384;
}

#totalImpressions {
  color: #36a2eb;
}

#averageCTR {
  color: #4bc0c0;
}

#averagePosition {
  color: #9966ff;
}

.meta-key {
    font-weight: bold;
    color: #333;
    display: inline-block;
    margin-right: 5px;
}

.char-count {
    font-size: 16px;
    color: #1C3ADD;
}

.checkmark {
    color: green;
    font-size: 12px;
    margin-left: 5px;
}

.crossmark {
    color: red;
    font-size: 12px;
    margin-left: 5px;
}

.recommendation {
    color: red;
    font-style: italic;
    margin-left: 20px;
}

.valid-msg {
    color: green;
    font-style: italic;
}


.alt-text {
    background-color: #f0f0f0; /* Change this to your desired background color */
    padding: 5px; /* Optional: Add some padding */
    border-radius: 5px; /* Optional: Add rounded corners */
    font-size: 18px;
    color: #1C3ADD;
}

#displayScore, #displayBestScore {
    font-size: 18px;
    font-weight: bold;
}

#displayScore span {
    padding: 5px;
    border-radius: 3px;
}

#displayPercentage span{
    padding: 5px;
    font-size: 48px;
    border-radius: 3px;
}

/* Hamburger menu button styles */
.hamburger {
    display: none; /* Hidden by default */
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
}

.hamburger-bar {
    display: none; /* Hidden by default */
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
}

@media screen and (max-width: 950px) {
    .header-container {
        justify-content: space-between;
    }
    .hamburger {
        display: block; /* Show hamburger button */
    }
    .hamburger-bar {
        display: block; /* Show hamburger button for main bar */
    }
    .menu-bar {
        display: none; /* Hide the main menu bar */
    }
    #sidebar {
        display: none; /* Hide the sidebar */
        width: 100%; /* Full width for sidebar on smaller screens */
        position: relative; /* Adjust position */
        height: auto; /* Adjust height */
    }
    .sidebar-open {
        display: block; /* Show sidebar when open */
    }
    .menu-bar-open {
        display: flex; /* Show menu bar when open */
        flex-direction: column;
    }
}

table {
    width: 90%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    position: relative;
    cursor: pointer;
    padding-right: 20px; /* Adjust if needed to accommodate the arrow */
}

table th::after {
    content: '▼'; /* Default arrow pointing down */
    position: absolute;
    right: 5px;
    font-size: 0.8em;
}

table th.sort-asc::after {
    content: '▲'; /* Arrow pointing up */
}

/* Export button styling */
button {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 20px;
    background-color: #151DD5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #151DD5;
}

button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
/* Content-analysis sections */
.widget-container {
    border-radius: 8px;
    padding: 10px;
    max-width: 90%;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.widget-container h2 { 
    color: #0073e6; 
    font-weight: bold; 
    font-size: 16px; 
    margin: 0 0 8px; 
}
.widget-container p {
    margin: 10px 0;
    font-size: 16px;
    font-weight: 400;
    color: #0056B3;
}
.widget-container span {
    font-weight: bold;
    color: #000;
}
.widget-container-horizontal {
    display: flex;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    max-width: 800px;
    width: 95%;
    justify-content: space-between;
}
.widget-item {
    text-align: left;
    flex: 1;
    padding: 0px;
}
.widget-item h2 { 
    color: #0073e6; 
    font-weight: bold; 
    font-size: 16px; 
    margin: 0 0 8px; 
}
.widget-item p {
    margin: 0px 0;
    font-size: 18px;
    color: #0056B3;
}
.widget-item span {
    font-weight: bold;
    color: #000;
}

/* Hide elements with specific content */
.hidden-item {
    display: none;
}

/* New styles for report-item */
.widget-container .report-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
}
.widget-container .report-item strong {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}
.widget-container .report-item #field-report {
    color: #888 !important;
    font-size: 16px !important;
    font-weight: normal !important;
    margin: 0 !important;
    font-family: 'hanken grotesk', sans-serif;
    padding: 0 !important;
}



/* internal Links table */
.internal-links-table {
    width: 100%;
    border-collapse: collapse;
}

.internal-links-table th, .internal-links-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
    white-space: normal;
    max-width: 200px;  /* You can adjust the max-width to fit your layout */
}

.internal-links-table th {
    background-color: #f2f2f2;
}

.internal-links-table {
    width: 100%;
    border-collapse: collapse;
}
.internal-links-table th, .internal-links-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.search-container, .pagination-controls {
    margin: 20px 0;
}
.buttons-container button {
    margin-right: 10px;
}
.buttons-container button {
    margin-right: 10px;
}
.sort-asc::after {
    content: "▲";
}
.sort-asc:hover::after {
    content: "▼";
}

#scoreboardContainer {
    width: 100%;
    overflow-x: auto;
}

.score-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.score-table th, .score-table td {
    border: 1px solid #000;
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
    white-space: normal;
    font-size: 12px; /* Setting the font size for table headers and cells */
}

.wrap-text {
    word-wrap: break-word;
    white-space: normal;
    text-align: center; /* Center the symbols */
}
#scoreboardContainer {
    width: 100%;
    overflow-x: auto;
}

.score-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.score-table th, .score-table td {
    border: 1px solid #000;
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
    white-space: normal;
    font-size: 12px; /* Setting the font size for table headers and cells */
}

.wrap-text {
    word-wrap: break-word;
    white-space: normal;
    text-align: center; /* Center the symbols */
}
#scoreboardContainer {
    width: 100%;
    overflow-x: auto;
}

.score-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.score-table th, .score-table td {
    border: 1px solid #000;
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
    white-space: normal;
    font-size: 12px; /* Setting the font size for table headers and cells */
}

.wrap-text {
    word-wrap: break-word;
    white-space: normal;
    text-align: center; /* Center the symbols and grades */
}

.grade-cell {
    font-weight: bold;
    font-size: 20px; /* Set font size for grade cells */
}

#scoreboardContainer {
    width: 100%;
    overflow-x: auto;
}

.score-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.score-table th, .score-table td {
    border: 1px solid #000;
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
    white-space: normal;
    font-size: 12px; /* Setting the font size for table headers and cells */
}

.wrap-text {
    word-wrap: break-word;
    white-space: normal;
    text-align: center; /* Center the symbols and grades */
}

.grade-cell {
    font-weight: bold !important;
    font-size: 26px !important; /* Set font size for grade cells */
}
#paginationControls {
    margin-top: 10px;
}

#paginationControls button {
    margin-right: 5px;
}
.load-button {
    width: 200px; /* Adjust width as needed */
    height: 50px; /* Adjust height as needed */
    /* Add more styling as needed */
}

.container {
    display: flex;
    flex-wrap: wrap;
}



.full-width-table {
    width: 100%;
}

.full-width-table table {
    width: 100%;
    border-collapse: collapse;
}

.full-width-table th, .full-width-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.full-width-table th {
    background-color: #f2f2f2;
    text-align: left;
}
.internal-links-table {
    width: 100%;
    border-collapse: collapse;
}
.internal-links-table th, .internal-links-table td {
    border: 1px solid #ddd;
    padding: 8px;
}
.internal-links-table th {
    cursor: pointer;
}
.search-container, .pagination-controls {
    margin: 20px 0;
}
.buttons-container button {
    margin-right: 10px;
}

#searchContainer {
    display: flex;
    flex-direction: column;
    align-items: left; /* Center the button horizontally */
    width: 100%; /* Ensure the container takes up full width */
}

#searchURL {
    width: 90%; /* Make the input field 90% of the width of the container */
    margin-bottom: 10px; /* Add some space between the input field and the button */
    padding: 8px; /* Add some padding for better appearance */
    box-sizing: border-box; /* Ensure padding is included in the total width */
}

#searchContainer button {
    width: 90%; /* Make the button the same width as the input field */
    padding: 8px; /* Add some padding for better appearance */
}

.p-top-bottom-margin {
    margin-top: 20px;
    margin-bottom: 20px;
}


.three-column-section {
    margin-left: 0%; /* Consistent left margin */
    margin-right: 5%; /* Consistent right margin */
    width: auto; /* Width adjusts based on the margin settings */
    display: flex;
    text-align: center; /* Ensure text is centered */
    flex-wrap: wrap; /* Allows columns to wrap if they don't fit */
    gap: 15px; /* Space between columns */
    display: flex;
    justify-content: space-between;
}


.three-column {
    flex: 1; /* Flexible growth to occupy available space */
    padding: 5px; /* Consistent padding */
    box-sizing: border-box; /* Include padding in width calculation */
    min-width: 15%; /* Minimum width to prevent columns from getting too narrow */
    border: 1px solid #ccc; /* Uniform border */
    background-color: #fff; /* Light grey background, same as two-column */
    border-radius: 5px; /* Rounded corners */
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30%;

}
.widget-container {
    flex-grow: 1;
}


/* Adjust heading sizes within the three-column section */
.three-column h1 {
    font-size: 18px; /* Adjust as needed */
}

.three-column h2 { 
    color: #0073e6; 
    font-weight: bold; 
    font-size: 16px; 
    margin: 0 0 8px; 
}

.three-column h3 {
    color: #301bf1;

    font-size: 14px; /* Adjust as needed */
}

/* Adjust responsiveness for smaller screens */
@media screen and (max-width: 1200px) {
    .three-column {
        min-width: 30%; /* Larger minimum width for better readability on medium screens */
    }
}

@media screen and (max-width: 1400px) {
    .three-column-section {
        flex-direction: row; /* Maintain row direction, adjust column widths */
        flex-wrap: wrap; /* Allow wrapping */
    }
    
    .three-column {
        min-width: 50%; /* Two columns per row on smaller screens */
    }
}

@media screen and (max-width: 1200px) {
    section {
        margin-left: 0;
        width: 100%; /* Section takes full width on smaller screens */
        padding: 10px; /* Reduce padding to save space */
    }

    .three-column {
        min-width: 100%; /* One column per row on the smallest screens */
    }

    #sidebar {
        width: 100%; /* Sidebar takes full width at smaller breakpoints */
        position: relative; /* Changes position to flow in document stream */
        height: auto; /* Adjust height based on content */
    }
}


.signInLogic {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.signInLogic input,
.signInLogic button {
    display: block;
    width: 80%;
    max-width: 300px;
    padding: 10px;
    margin: 10px auto;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.signInLogic button {
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

.signInLogic button:hover {
    background-color: #0056b3;
}

.signInLogic h2, .signInLogic h3, .signInLogic h1 {
    margin: 20px 0 10px;
}

.viklogo {
    width: 250px;
    opacity: 0.15; /* Make the logo nearly transparent */
    margin-bottom: 20px;
    display: block;
    margin: 0 auto; /* Center the image horizontally */
}


.signInLogic input {
    display: block;
    width: calc(100% - 22px);
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.signInLogic button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    font-size: 16px;
}
.signInLogic button:hover {
    background-color: #0056b3;
}
#redirectMessage {
    margin-top: 10px;
    color: green;
    display: none;
}
.spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border-top-color: #007bff;
    animation: spin 1s ease-in-out infinite;
    display: none;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/*
#message::before {
    content: "";
    background-image: url('img/vship400.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
} */

        /* Initial collapsed state */
/* CSS for collapsing and expanding the section */
/* CSS for collapsing and expanding the section */
.two-column-section {
    position: relative;
}

#twoColumnContent {
    display: flex;
    max-height: 1000px; /* Adjust this value based on the content's height */
    overflow: hidden;
    transition: max-height 0.5s ease;
}

#twoColumnContent.collapsed {
    max-height: 0;
}

.column {
    flex: 1;
    margin: 10px;
}

#toggleButton {
    position: absolute;
    right: -40px; /* Adjust as needed to position the button on the side */
    top: 50%;
    transform: translateY(-50%);
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

#toggleButton:hover {
    background-color: #0056b3;
}

/* css/style.css */
.url-entry {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.field-entry {
    margin: 10px 0;
}

h2 { 
    color: #0073e6; 
    font-weight: bold; 
    font-size: 16px; 
    margin: 0 0 8px; 
}

h3 {
    font-size: 1.2em;
    color: #301bf1;
    margin-bottom: 5px;
}

span {
    display: block;
    margin-left: 20px;
    color: #777;
    white-space: pre-wrap;
}

/* css/style.css */

/* Style for specific span elements by their IDs */
#field-Flesch-Reading-Ease-Score,
#field-Reading-Ease,
#field-report,
#field-meta_data,
#field-image_analysis,
#field-Outbound-Internal-Links,
#field-Inbound-Internal-Links,
#field-Outbound-External-Links,
#field-sitemap-check,
#field-Reference,
#field-Recommendations,
#field-Recommendations-single,
#field-Generated-Content {
    color: #888 !important;
    font-size: 16px !important;
    font-weight: normal !important;
    margin: 0 !important;
    font-family: 'hanken grotesk', sans-serif;
    padding: 0 !important;
}

/* Example of additional styling for specific fields */
#field-Flesch-Reading-Ease-Score {
    font-weight: bold;
    color: blue;
}

#field-Reading-Ease {
    font-style: italic;
    color: green;
}

/* Report specific styles, similar to meta data */
#field-report {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    color: #555;
}



/* Meta data specific styles */
#field-meta_data {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
}

/* General styling for all field spans */
.field-entry span {
    display: block;
    margin-left: 20px;
    white-space: pre-wrap;
}

/* Styling for valid and invalid meta data lengths */
.meta-valid {
    color: green !important;
}

.meta-invalid {
    color: red !important;
}

#field-image_analysis {
    color: red;
}

#field-Outbound-Internal-Links {
    text-decoration: underline;
}

#field-Inbound-Internal-Links {
    font-weight: bold;
}

#field-Outbound-External-Links {
    color: purple;
}

#field-sitemap-check {
    background-color: #eef;
    padding: 5px;
    border-radius: 3px;
}

#field-Reference {
    color: #888 !important;
    font-size: 16px !important; /* Set your desired font size */
    font-weight: normal !important;
}

/* Reset all common text elements */
#field-Reference h1,
#field-Reference h2,
#field-Reference h3,
#field-Reference h4,
#field-Reference h5,
#field-Reference h6,
#field-Reference p,
#field-Reference span,
#field-Reference div,
#field-Reference a,
#field-Reference li,
#field-Reference ul,
#field-Reference ol,
#field-Reference blockquote,
#field-Reference pre,
#field-Reference code,
#field-Reference em,
#field-Reference strong,
#field-Reference b {
    color: #888 !important;
    font-size: 16px !important;
    font-weight: normal !important;
    margin: 0 !important;
    font-family: 'hanken grotesk', sans-serif;
    padding: 0 !important;
}

/* Apply specific styles for bold elements */
#field-Reference strong,
#field-Reference b {
    font-weight: bold !important;
}

/* Ensure list elements have no additional styling */
#field-Reference ul,
#field-Reference ol {
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Apply specific styles for header elements */
#field-Reference h1,
#field-Reference h2,
#field-Reference h3,
#field-Reference h4,
#field-Reference h5,
#field-Reference h6 {
    font-weight: bold !important;
    margin: 0 !important;
    padding: 0 !important;
}




#field-Recommendations {
    color: #888;
    font-family: 'hanken grotesk';
}

#field-Generated-Content {
    color: #aaa;
}

/* Optional: General styling for all field spans */
.field-entry span {
    display: block;
    margin-left: 20px;
    color: #777;
    white-space: pre-wrap;
}



.lightbox-gallery img {
    cursor: pointer;
    transition: 0.3s;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.lightbox img {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.lightbox:target {
    display: block;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}



    .iframe-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
        padding: 20px;
    }
    h1 {
        text-align: center;
    }


    .AO-two-col {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
    
    .AO-two-col .left-column {
        width: 80%; /* 80% width for the left column */
        display: flex;
        flex-direction: column; /* Stack elements vertically */
    }
    
    .AO-two-col .right-column {
        width: 20%; /* 20% width for the right column */
        border: 1px solid #ccc; /* Optional: for visual separation */
        background-color: #fff;
        border: #ccc;
        padding: 10px;
        border-radius: 5px;
    }
    
    /* Media query for viewport width less than 1400px */
    @media (max-width: 1400px) {
        .AO-two-col {
            flex-direction: column; /* Stack columns vertically */
        }
    
        .AO-two-col .left-column, .AO-two-col .right-column {
            width: 100%; /* Full width for both columns */
            margin-bottom: 20px; /* Optional: space between columns */
        }
    }
    
    
    .AO-two-col .three-columns {
        display: flex;
        background-color: #fff;
        border: #ccc;
        padding: 10px;
        border-radius: 5px;
        justify-content: space-between;
        width: 100%;
        gap: 10px; /* Optional: gap between columns */
    }
    
    .AO-two-col .three-columns .column {
        width: 32%; /* 3 columns within 80% width */
        border: 1px solid #ccc;
        box-sizing: border-box;
        padding: 10px; /* Optional: padding for content */
    }
    
    /* Media query for viewports less than 900 pixels */
    @media screen and (max-width: 900px) {
        .AO-two-col {
            flex-direction: column; /* Stack the two main columns */
        }
    
        .AO-two-col .left-column, .AO-two-col .right-column {
            width: 100%; /* Full width for both columns */
        }
    
        .AO-two-col .three-columns {
            flex-direction: column; /* Stack the nested columns */
        }
    
        .AO-two-col .three-columns .column {
            width: 100%; /* Full width for nested columns */
            margin-bottom: 10px; /* Space between stacked columns */
        }
    }
    #newImageDisplay img {
        max-width: 100px;
        height: auto;
        display: block;
        margin-bottom: 10px;
        max-height: 100px; /* Added this to limit the image height */
    }
    
    #newImageDisplay div {
        word-wrap: break-word; /* Ensures long text breaks to the next line */
        overflow: hidden;
        margin-bottom: 10px; /* Added margin for better spacing */
        border: 1px solid #ddd; /* Optional: Add a border for better visual separation */
        padding: 10px; /* Optional: Add padding for better visual separation */
    }
    
    #url-link {
        display: block; /* Ensures the link is a block element */
        overflow: hidden;
        font-size: 12px;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    #selected-url {
        display: block; /* Ensures the URL is a block element */
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
    }
    
    #field-meta_data, #field-heading_tags, #field-valid_structure, #field-image_analysis {
        max-width: 100%;
        overflow: hidden;
    }
    
    .meta-valid {
        color: green;
    }
    
    .meta-invalid {
        color: red;
    }
  
    
    /* Remove any box-shadow in the CSS */
canvas {
    box-shadow: none !important;
}
/* Container for the pie charts */
.pie-chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Ensure the canvas background is transparent */
.pie-chart2 {
    width: 300px; /* Adjust size as needed */
    height: 300px; /* Adjust size as needed */
    background-color: transparent; /* Ensure the canvas background is transparent */
}

/* If you have a class specific for your charts, ensure they are also centered */
.container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    flex-direction: column;
}

/* Ensure the parent widget container is also centered */
.widget-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#loading {
    font-size: 18px;
    color: #007bff;
    text-align: center;
    margin-top: 20px;
}

#results {
    margin-top: 20px;
}

#results p {
    margin: 5px 0;
}

#results span {
    font-weight: bold;
}
.stats-container {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
}

.stats-table th, .stats-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    position: relative;
}

.stats-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.stats-table th::after {
    content: none; /* This will remove the default sorting icons */
}

.stats-table td span.change {
    margin-left: 8px;
    display: flex;
    align-items: center;
}

.stats-table td span.change span {
    margin-left: 4px;
}

.stats-table td span.change span[style*="color: green;"] {
    color: green;
}

.stats-table td span.change span[style*="color: red;"] {
    color: red;
}


.dashboard-static {
    padding: 0px;
    border-radius: 8px;
    margin: 0px auto;  /* Center horizontally */
    width: 90%;
    display: flex;
    flex-direction: column;
    text-align: left;
    overflow: hidden; /* Ensures no overflow */

}
.dashboard-static h2, h3, h4, h5 {
    color: #301bf1;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    margin: 0 0 14px;
}

.dashboard-static p {
    color: #ffffff;
    font-size: 12px;
    font-family: 'Hanken Grotesk', sans-serif;
    
    margin: 0;
}

.dashboard-static h4, .dashboard-static h5, .dashboard-static p {
    display: none;
}
/* General styles specific to dnsinfo page */
.dnsinfo-body {
    font-family: 'Hanken Grotesk', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

.dnsinfo-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dnsinfo-left-nav {
    width: 200px;
    background-color: #000;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    position: fixed;
    top: 80px; /* Adjust based on the height of your header */
    left: 0;
    height: calc(100% - 80px); /* Adjust based on the height of your header */
    overflow-y: auto;
    padding: 20px;
}

.dnsinfo-left-nav ul {
    list-style-type: none;
    padding: 0;
}

.dnsinfo-left-nav a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 0;
}

.dnsinfo-left-nav a:hover {
    background-color: #333;
}

.dnsinfo-content-container {
    margin-left: 220px;
    padding: 00px 20px 20px; /* Added top padding to avoid content being hidden under fixed header */
}

.dnsinfo-content-display {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dnsinfo-content-display h2 { 
    color: #0073e6; 
    font-weight: bold; 
    font-size: 16px; 
    margin: 0 0 8px; 
}

.dnsinfo-pre {
    background-color: #f4f4f9;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
}
#url-link {
    display: block; /* Ensures the link is a block element */
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}
#url-link {
    display: block !important; /* Ensures the link is a block element */
    overflow: hidden !important;
    font-size: 12px !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    max-width: 100% !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.url-link-click {
    font-size: 16px !important; /* Custom font size */
    position: relative !important;
    padding-right: 25px !important; /* Space for the arrow */
    color: #007bff !important; /* Link color */
    text-decoration: none !important; /* Remove underline */
    cursor: pointer !important; /* Show hand cursor on mouseover */
}

.url-link-click::after {
    content: '→' !important; /* Arrow character */
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    font-size: 20px !important; /* Bigger arrow size */
    color: #28a745 !important; /* Green arrow color */
    transition: transform 0.2s ease !important; /* Smooth arrow movement */
}

.url-link-click:hover::after {
    transform: translateX(5px) !important; /* Move arrow on hover */
}

#urlSelect {
    width: 550px; /* Set the width of the dropdown */
    padding: 5px;
}

.url-input {
    width: 320px; /* Set the width of the input field */
    padding: 5px;
}

#searchButton {
    width: 175px; /* Set the width of the search button */
    padding: 5px;
    margin-left: 20px; /* Add a left margin to the button */
}

.url-search-container {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.url-search-container label {
    margin-right: 10px;
}

.url-search-container input {
    margin-right: 10px;
}
body {
    font-family: Hanken Grotesk, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

.container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/*---------------- Metric Comparison Chart Start ----------------*/

#chart {
    margin-top: 20px;
}

.metric-container {
    margin-bottom: 20px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 16px;

}

.metric-label {
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
}

.metric-chart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.bar-container {
    width: 50%;
    display: flex;
    align-items: center;
}

.left-bar-container {
    justify-content: flex-end;
}

.right-bar-container {
    justify-content: flex-start;
}

.bar {
    height: 20px;
    max-width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-bar {
    margin-right: 0px;
}

.right-bar {
    margin-left: 0px;
    color: #333333;

}

.middle-bar {
    width: 2px;
    height: 40px;
    background-color: #CB04A5;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.legend {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;

}

.legend-period {
    display: flex;
    font-size: 16px;
    font-family: 'Hanken Grotesk', sans-serif;
    align-items: left;
    justify-content: space-around;
    margin-bottom: 10px;
}

.legend-colors {
    display: flex;
    justify-content: space-around;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 12px;


}

.legend-text {
    margin: 0 10px;
}

.legend-box {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 5px;
}

.legend-positive {
    background-color: #28a745;
}

.legend-negative {
    background-color: #dc3545;
}


/*DNS and Framework page, addition of pagespeed aggregate*/
.pagespeed-aggregate-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.pagespeed-aggregate-container .column {
    flex: 1;
    margin: 10px;
}

.pagespeed-details-container {
    font-size: 14px;
}
.pagespeed-details-container table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.pagespeed-details-container th, .pagespeed-details-container td {
    border: 1px solid #ddd;
    padding: 8px;
}
.pagespeed-details-container th {
    background-color: #f2f2f2;
}
.pagespeed-details-container input[type="text"] {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    font-size: 10px;
}
.pagespeed-details-container button {
    padding: 5px 10px;
    font-size: 10px;
    margin-top: 10px;

}
/*--------------Single Page Export Button -----------*/
#exportAllBtn, #exportSingleBtn {
    padding: 5px 100px;
    margin: 10px;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 12px;
    width: 400px;
    background-color: #151DD5; 
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#exportAllBtn:hover, #exportSingleBtn:hover {
    background-color: #151DD5; 
}



/* Pagespeed on dashboard*/

.metrics-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    padding: 20px;
    max-width: 600px;
    font-family: Hanken Grotesk, sans-serif;

    
    color: #333;
}

.metrics-container h3 {
    color: #301bf1;
    border-bottom: 2px solid #0073e6;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.metrics-container h4 {
    color: #005bb5;
    margin-top: 20px;
}

.metrics-container p {
    margin: 10px 0;
}

.metrics-container span {
    font-weight: bold;
}

.gauge-container {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.status {
    font-weight: bold;
}

.status.pass {
    color: green;
}

.status.fail {
    color: red;
}

.status.soft-pass {
    color: orange;
}


.chart-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.chart-container canvas {
    width: 250px !important;
    height: 250px !important;
}

.status.pass {
    color: green;
}

.status.fail {
    color: red;
}

.status.soft-pass {
    color: orange;
}

/* Pagespeed Aggregate */
.pagespeed-aggregate-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    font-family: 'Hanken Grotesk', sans-serif;
}

.pagespeed-aggregate-container .column {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    width: 45%;
}

.pagespeed-aggregate-container h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.pagespeed-aggregate-container p {
    margin: 10px 0;
    font-size: 16px;
    color: #555;
}

.pagespeed-aggregate-container span {
    font-weight: bold;
    color: #000;
}


/*Main Dassboard pagespeed*/


.dashboard-container-29 {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    height: 400px;
    width: 100%;
    box-sizing: border-box; /* Ensures padding and borders are included in the width */
}

.dashboard-static-29 {
    width: 40%;
    padding: 20px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.pagespeed-aggregate-container-29 {
    display: flex;
    width: 60%;
    justify-content: space-between;
    padding-top: 5px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.pagespeed-aggregate-container-29 .column-29 {
    width: 45%;
    box-sizing: border-box;
}

.pagespeed-aggregate-container-29 h4 {
    margin-bottom: 15px;
    font-size: 1.2em;
    color: #333;
}

.pagespeed-aggregate-container-29 p {
    margin: 10px 0;
    font-size: 12px;
    color: #555;
}

.pagespeed-aggregate-container-29 span {
    font-weight: bold;
    color: #000;
}

.chart-container-29 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

/* main page top left you know it */

.highLevel-Numbers {
    flex: 1;
    margin-top: 10px;
    margin-bottom: 5px;
    border-radius: 8px;
    background-color: white;
    font-family: "Hanken Grotesk", sans-serif;
    padding: 10px; /* Added padding for better content spacing */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc; /* Uniform border */
}
#statsDisplay {
    flex: 1;
    margin-top: 10px;
    margin-bottom: 5px;
    border-radius: 8px;
    background-color: white;
    font-family: "Hanken Grotesk", sans-serif;
    padding: 10px; /* Added padding for better content spacing */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc; /* Uniform border */
}

/* Main Read More button */



.read-more-btn {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.read-more-btn .plus-icon {
    margin-right: 10px;
    font-size: 20px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 5px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#dashboard-static {
    display: none;
}
/* Read more button styles */
.read-more-btn {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: auto; /* Push the button to the bottom of its container */
}

.read-more-btn:hover {
    background-color: #0056b3;
}

.read-more-btn .icon {
    font-size: 24px; /* Make the icon bigger */
    color: white; /* Ensure the icon is white */
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Add a slight shadow for style */
    margin-right: 10px; /* Add space between icon and text */
}

/* Hide h4, h5, and p elements in the dashboard-static */
.dashboard-static h4, .dashboard-static h5, .dashboard-static p {
    display: none;
}


/*Main Technical pagespeed*/


.dashboard-container-30 {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    height: 200px;
    width: 100%;
    box-sizing: border-box; /* Ensures padding and borders are included in the width */
}

.dashboard-static-30 {
    width: 70%;
    padding: 20px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.pagespeed-aggregate-container-30 {
    display: flex;
    width: 30%;
    justify-content: space-between;
    padding-top: 5px;
    padding-left: 10px;
    background-color: #fff;
    /*border: 1px solid #ddd; */
    /*border-radius: 5px; */
    box-sizing: border-box;
}

.pagespeed-aggregate-container-30 .column-30 {
    width: 45%;
    box-sizing: border-box;
}

.pagespeed-aggregate-container-30 h4 {
    margin-bottom: 15px;
    font-size: 1.2em;
    color: #333;
}

.pagespeed-aggregate-container-30 p {
    margin: 10px 0;
    font-size: 12px;
    color: #555;
}

.pagespeed-aggregate-container-30 span {
    font-weight: bold;
    color: #000;
}

.chart-container-30 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    margin-bottom: 10px;
    width: 100px;
    height: 100px;
    position: relative;
}



.status.pass {
    color: green;
}

.status.soft-pass {
    color: orange;
}

.status.fail {
    color: red;
}

.main-container {
    display: flex;
    justify-content: space-between;
}

.left-container {
    flex: 1;
    padding: 20px;
}

.right-container {
    flex: 2;
    padding: 20px;
}

/*Main Graph */
.chart-table-container {
    display: grid;
    grid-template-rows: auto 1fr;
    width: 100%;
    gap: 20px; /* Adjust this value as needed to control the spacing */
}

#chart-container {
    position: relative;
    width: 100%;
    padding-top: 62.5%; /* 16:10 aspect ratio (100 / 16 * 10) */
    max-width: 1000px; /* You can adjust this max-width as needed */
}

#myChart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Media query for 4:3 aspect ratio */
@media (max-width: 1400px) {
    #chart-container {
        padding-top: 75%; /* 4:3 aspect ratio (100 / 4 * 3) */
    }
}

/* Media query for 1:1 aspect ratio */
@media (max-width: 1250px) {
    #chart-container {
        padding-top: 100%; /* 1:1 aspect ratio (100 / 1 * 1) */
    }
}

#table-container {
    width: 100%;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items at the top */
    gap: 20px; /* Adjust the space between the two sections */
}

.left-content {
    flex: 1;
    padding: 20px;
}

.right-content {
    position: relative;
    width: 100%;
    max-width: 600px; /* Adjust the max-width as needed */
    padding-top: 62.5%; /* 16:10 aspect ratio (100 / 16 * 10) */
}

#myChart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Media query for 4:3 aspect ratio */
@media (max-width: 1400px) {
    .right-content {
        padding-top: 75%; /* 4:3 aspect ratio (100 / 4 * 3) */
    }
}

/* Media query for 1:1 aspect ratio */
@media (max-width: 1250px) {
    .right-content {
        padding-top: 100%; /* 1:1 aspect ratio (100 / 1 * 1) */
    }
}

/* Media query for stacking at 1200 pixels or less */
@media (max-width: 1400px) {
    .content-container {
        flex-direction: column;
        align-items: stretch; /* Align items to fill the container width */
    }

    .left-content, .right-content {
        max-width: 100%; /* Ensure full width for both sections */
    }

    .right-content {
        padding-top: 75%; /* Adjust padding to maintain aspect ratio if needed */
    }
}


footer {
    width: 100% !important;
    padding: 20px !important;
    background-color: #f1f1f1 !important;
}

.footer-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    margin: 0 auto !important;
}

.footer-column {
    flex: 1 1 200px !important; /* Allow the columns to grow and shrink, minimum width of 200px */
    margin: 10px !important;
}

.footer-column h4 {
    font-size: 1.2em !important;
    margin-bottom: 10px !important;
}

.footer-column ul {
    list-style-type: none !important;
    padding: 0 !important;
}

.footer-column ul li {
    margin-bottom: 8px !important;
}

.footer-column ul li a {
    text-decoration: none !important;
    color: #333 !important;
    display: flex !important;
    align-items: center !important;
}

.footer-column ul li a:hover {
    text-decoration: underline !important;
}

.footer-column ul li a i {
    margin-right: 8px !important;
}

.footer-column p {
    margin: 8px 0 !important;
}


/* search updates page*/
.searchUpdate-body {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    background-color: #f4f4f4;
    color: #333;
}

.searchUpdate-chart-container {
    margin: 20px 0;
}

.searchUpdate-updates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.searchUpdate-update-column {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
}

.searchUpdate-update-column h2 {
    margin-top: 0;
}

.searchUpdate-incident {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.searchUpdate-chart-container {
    margin: 20px 0;
    height: 300px; /* Set the height of the chart container */
}

.searchUpdate-chart-container canvas {
    height: 300px !important; /* Make sure the canvas takes the full height of the container */
}

/*main highlevel circle graph */
      .highLevel-Numbers-31 {
        padding: 20px;
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        border-radius: 5px;
        margin: 20px 0;
        margin-left: 0px;
        font-family: 'Hanken Grotesk', sans-serif;
    }

    .metrics-container-31 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .metrics-text-31 {
        flex: 1;
        margin-right: 20px;
    }

    .metrics-graph-31 {
        flex: 1;
        text-align: center;
    }

    .metrics-graph-31 canvas {
        border: 1px solid #ddd;
        border-radius: 50%;
        width: 75% !important;
        height: 75% !important;
    }

    .legend-color {
        display: inline-block;
        width: 14px;
        height: 14px;
        margin-right: 5px;
        border: 1px solid #000;
        vertical-align: middle;
    }

    .metrics-item, .info-text {
        font-size: 14px;
    }


    /*Toggle switch*/
    .toggle-button {
        position: relative;
        display: inline-block;
        width: 60px;
        height: 34px;
        background-color: #ccc;
        border: none;
        border-radius: 34px;
        cursor: pointer;
        transition: background-color 0.4s;
      }
      
      .toggle-button:before {
        content: '';
        position: absolute;
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        border-radius: 50%;
        transition: transform 0.4s;
      }
      
      .toggle-button.active {
        background-color: #42FF22;
      }
      
      .toggle-button.active:before {
        transform: translateX(26px);
      }
      
/* Custom styling for work priority pages */

      .workPriority {
        color: #333; /* Dark text */
        font-weight: bold; /* Bold text */
    }
    
    .workPriority table {
        width: 100%;
        border-collapse: collapse;
    }
    
    .workPriority th, .workPriority td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: left;
    }
    
    .workPriority th {
        background-color: #f2f2f2;
    }

    .tinynotes {
        font-family: 'Hanken Grotesk', sans-serif;
        font-size: 10px;
        color: grey;
    }
    .expand-link {
        margin-left: 5px;
        font-size: 12px;
        color: blue;
        text-decoration: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
    }
    
    .expand-link:hover {
        color: darkblue;
    }
    
    .expand-icon {
        display: inline-block;
        width: 16px;
        height: 16px;
        line-height: 14px;
        text-align: center;
        border: 1px solid blue;
        border-radius: 2px;
        background-color: transparent;
        color: blue;
        font-size: 12px;
        margin-right: 5px;
        cursor: pointer;
    }
    
    .expand-link:hover .expand-icon {
        border-color: darkblue;
        color: darkblue;
    }
    /* Internal Links page chart*/
    #internalLinksChart {
        width: 600px !important;
        height: 280px !important;
    }

    .legendMeta {
        font-family: 'hanken grotesk', sans-serif;
        font-size: 16px;
        margin-top: 10PX;
    }

    .legendMeta h2, h3, h4, h5 {
        color: #301bf1;
        font-family: 'Raleway', sans-serif;
        font-size: 16px;
        margin-top: 10px !important;
    }


    /* work priorities preload table */

    /* CSS */
#table-container {
    min-height: 500px; /* Adjust as needed */
    position: relative;
}

#loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5em;
    color: #555;
}

#data-table {
    display: none;
}

#data-table.loaded {
    display: table;
}

.outer-column {
    width: 100%;
}

.inner-two-col {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.inner-left-column, .inner-right-column {
    width: 48%; /* Adjust width as needed to fit your design */
    padding: 10px;
}


#table-container {
    width: 100%; /* Ensure the container takes up the full width */
}

#table-container .one-column-section {
    width: 100%; /* Ensure the section takes up the full width */
    max-width: 1200px; /* Optional: Set a max-width if needed */
    margin: 0 auto; /* Center align if max-width is set */
}

#metadata-table {
    width: 100%; /* Make the table take up the full width of its container */
    table-layout: fixed; /* Optional: Fixed layout to distribute columns evenly */
}

.checkmark-icon {
    color: #5BFF54 !important; /* Green color for the checkmark */
    font-size: 120%; /* Increase size by 20% */
}

.fail-icon, .check-icon {
    font-size: 120%; /* Increase size by 20% */
}



/* This is the scorecard html page for the table*/
table.score-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto; /* Ensure table layout is set to auto */
}

.icon-cell, .grade-cell {
    text-align: center; /* Center text horizontally */
    vertical-align: middle; /* Center text vertically */
    white-space: nowrap; /* Ensure text does not wrap */
    padding: 10px; /* Add some padding for better visuals */
}

.wrap-text {
    white-space: nowrap; /* Ensure text does not wrap */
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
    text-align: center;
}

.grade-cell {
    font-weight: bold;
}

/* for the grade on content-analysis */
.grade-letter {
    font-size: 4em; /* Adjust the size as needed */
Font-family: Raleway; /* Specify the color you want */
}


.sp-bar-graph {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.sp-bar-graph h3 {
    text-align: center;
    margin-bottom: 20px;
}

.sp-bar-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sp-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sp-bar-label {
    width: 180px;
    text-align: right;
}

.sp-bar-content {
    flex: 1;
    height: 30px;
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.sp-bar-value {
    position: absolute;
    height: 100%;
    background-color: #3b82f6;
    color: white;
    text-align: right;
    padding-right: 5px;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

/* more single page stuff */
#controls {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#controls input[type="radio"] {
    margin-right: 5px;
}

#controls label {
    margin-right: 20px;
    font-size: 16px;
    color: #333;
}

#metrics {
    max-width: 800px;
    margin: 0 auto;
    padding: 00px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#metrics table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    background-color: #fff;
}

#metrics th, #metrics td {
    padding: 12px 15px;
    text-align: left;
}

#metrics th {
    background-color: #007bff;
    color: #ffffff;
    font-size: 16px;
}

#metrics tr:nth-child(even) {
    background-color: #f9f9f9;
}

#metrics tr:hover {
    background-color: #f1f1f1;
}

#metrics td {
    border-bottom: 1px solid #ddd;
    font-size: 18px;
}

#metrics td:first-child {
    font-weight: bold;
    color: #555;
}
#chartContainerAggregate {
    position: relative;
    width: 100%;
    max-width: 100%; /* Ensure the container does not exceed its parent's width */
    margin: auto;
    overflow: hidden; /* Ensure any overflow is hidden */
}

#chartContainerAggregate canvas {
    display: block;
    max-width: 100%; /* Ensure the canvas does not exceed its container's width */
    height: 100%; /* Ensure the canvas fills the container's height */
}



/* CSS for the search results table */
.searchdb-table {
    width: 95vw;
    max-width: 95vw;
    border-collapse: collapse;
    font-size: 10px;
    margin: 0 auto; /* Center the table */
}

.searchdb-table th, .searchdb-table td {
    border: 1px solid #ddd;
    padding: 8px;
    word-wrap: break-word; /* Ensure URLs wrap */
    white-space: normal; /* Ensure URLs wrap */
}

.searchdb-table th {
    background-color: #0F00CB; /* Header background color */
    color: white; /* Header font color */
    text-align: center; /* Center align headers */
    font-size: 12px; /* Header font size */
    font-family: 'Raleway', sans-serif; /* Font family for headers */
}

.searchdb-table td {
    font-size: 10px;
    font-family: 'Hanken Grotesk', sans-serif; /* Font family for regular text */
}

.searchdb-table tr:nth-child(even) {
    background-color: white; /* White background for even rows */
}

.searchdb-table tr:nth-child(odd) {
    background-color: transparent; /* Transparent background for odd rows */
}

.searchdb-table-container {
    overflow-x: auto; /* Add horizontal scrolling for the table */
}

.pagination {
    margin-top: 10px;
    text-align: center;
}

.pagination-button {
    background-color: #0F00CB; /* Blue */
    color: white;
    border: none;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 10px;
    margin: 4px 2px;
    cursor: pointer;
}

.results-info {
    font-size: 10px;
    margin-bottom: 10px;
}

.total-results {
    font-size: 10px;
    margin-bottom: 10px;
}

/* Center align number columns */
.searchdb-table td:nth-child(2),
.searchdb-table td:nth-child(3),
.searchdb-table td:nth-child(4),
.searchdb-table td:nth-child(5),
.searchdb-table td:nth-child(6),
.searchdb-table td:nth-child(8) {
    text-align: center;
}

/* Set URL column width and ensure it wraps */
.searchdb-table td:nth-child(7) {
    max-width: 25%;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
}

/* Responsive table styling */
@media (max-width: 1200px) {
    .searchdb-table {
        width: 90vw;
    }
}

@media (max-width: 768px) {
    .searchdb-table {
        width: 85vw;
    }

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

    .pagination-button {
        padding: 3px 6px;
        font-size: 8px;
    }

    .results-info, .total-results {
        font-size: 8px;
    }
}

/* gsc-queries.html Scoped styles for Query and URL Data Display *//* Scoped styles for Query and URL Data Display */
/* Scoped styles for Query and URL Data Display
    font-family: 'Hanken Grotesk', sans-serif; /* Font family for regular text */
/* Scoped styles for Query and URL Data Display */
.gsc-queries-section-SS {
    font-family: 'Hanken Grotesk', sans-serif;
    margin: 20px;
}

.title-SS {
    text-align: center;
}

#search-container-SS {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

#search-box-SS {
    flex: 1;
}

#chart-container-SS {
    flex: 1;
}

#aggregate-container-SS {
    margin-bottom: 20px;
}

#aggregate-data-SS {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#aggregate-data-SS .aggregate-item-SS {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid  #ddd;
    padding: 10px;
}

#aggregate-data-SS .chart-container-SS {
    width: 100%;
}

#aggregate-data-SS .url-box-SS {
    width: 30%;
    background-color: white;
    border: 1px solid  #ddd;
    border-radius: 5px;
    padding: 5px;
    font-size: 12px;
    white-space: pre-wrap;
    cursor: pointer;
    overflow-y: auto;
    max-height: 200px; /* Optional: to limit the height */
}

#aggregate-data-SS .url-box-SS:focus {
    outline: none;
    background-color: #e0f7ff; /* Light blue background when focused */
}

#raw-data-container-SS {
    margin-top: 20px;
}

#raw-data-table-SS {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

#raw-data-table-SS, 
#raw-data-table-SS th, 
#raw-data-table-SS td {
    border: 1px solid  #ddd;
}

#raw-data-table-SS th, 
#raw-data-table-SS td {
    padding: 10px;
    text-align: left;
}

.url-box-SS {
    background-color: white;
    border: 1px solid  #ddd;
    padding: 5px;
    font-size: 10px;
    white-space: pre-wrap;
    cursor: pointer;
}

.url-box-SS:focus {
    outline: none;
    background-color: #e0f7ff; /* Light blue background when focused */
}


.grade-display {
    display: inline-block;
    font-size: 60px;
    color: #000;
    margin: 10px 0;
    text-align: center;
}

.grade-text {
    font-size: 16px;
}
.hover-info {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.icon-container {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.icon-container svg {
    fill: orange; /* Ensuring the icon is orange */
}

.tooltip {
    visibility: hidden;
    width: 160px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position the tooltip above the text */
    left: 50%;
    margin-left: -80px;
    opacity: 0;
    transition: opacity 0.3s;
}

.hover-info:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.grade-display {
    font-size: 60px;
    display: block;
}

.grade-text {
    font-size: 14px;
    display: block;
}


.CompetitiveSERP {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: left;
}

.CompetitiveSERP H1, h2 {
    width: 100%;
    font-size: 22px;
    text-align: left; /* Left-align the h2 */
}

.CompetitiveSERP .CompetitiveSERP-column {
    width: 100%;
    max-width: 1200px; /* Adjust this value to control the maximum width */
    padding: 20px;
}

.domain-list {
    margin-top: 20px;
}

.domain-box {
    background-color: #262626; /* Light grey background */
    padding: 20px;
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    text-align: left; /* Left align text within the box */
}


.three-column-section-analysis {
    margin-left: 0%; /* Consistent left margin */
    margin-right: 5%; /* Consistent right margin */
    width: auto; /* Width adjusts based on the margin settings */
    display: flex;
    text-align: center; /* Ensure text is centered */
    flex-wrap: wrap; /* Allows columns to wrap if they don't fit */
    gap: 15px; /* Space between columns */
    display: flex;
    justify-content: space-between;
}

.three-column-analysis {
    flex: 1; /* Flexible growth to occupy available space */
    padding: 5px; /* Consistent padding */
    box-sizing: border-box; /* Include padding in width calculation */
    min-width: 15%; /* Minimum width to prevent columns from getting too narrow */
    border: 1px solid #ccc; /* Uniform border */
    background-color: #fff; /* Light grey background, same as two-column */
    border-radius: 5px; /* Rounded corners */
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30%;
}

.widget-container-analysis {
    flex-grow: 1;
}

/* Adjust heading sizes within the three-column section */
.three-column-analysis h1 {
    font-size: 18px; /* Adjust as needed */
}

.three-column-analysis h2 {
    color: #0073e6;
    font-weight: bold;
    font-size: 16px;
    margin: 0 0 8px;
}

.three-column-analysis h3 {
    color: #301bf1;
    font-size: 14px; /* Adjust as needed */
}

/* Adjust responsiveness for smaller screens */
@media screen and (max-width: 1400px) {
    .three-column-analysis {
        min-width: 30%; /* Larger minimum width for better readability on medium screens */
    }
}

@media screen and (max-width: 1200px) {
    .three-column-section-analysis {
        flex-direction: row; /* Maintain row direction, adjust column widths */
        flex-wrap: wrap; /* Allow wrapping */
    }

    .three-column-analysis {
        min-width: 50%; /* Two columns per row on smaller screens */
    }
}

@media screen and (max-width: 768px) {
    .three-column-section-analysis {
        margin-left: 0;
        width: 100%; /* Section takes full width on smaller screens */
        padding: 10px; /* Reduce padding to save space */
    }

    .three-column-analysis {
        min-width: 100%; /* One column per row on the smallest screens */
    }

    #sidebar {
        width: 100%; /* Sidebar takes full width at smaller breakpoints */
        position: relative; /* Changes position to flow in document stream */
        height: auto; /* Adjust height based on content */
    }
}

.two-column-section-analysis {
    margin-left: 0%; /* Retain left margin for spacing from the sidebar */
    margin-right: 5%; /* Add right margin for symmetry */
    width: auto; /* Allow width to adjust based on the margin settings */
    display: flex;
    flex-wrap: wrap; /* Ensures columns wrap instead of overflowing */
    gap: 15px;
}

.column-analysis {
    flex: 1; /* Allows flexible growth based on screen size */
    padding: 10px; /* Consistent padding */
    box-sizing: border-box; /* Includes padding in width calculation */
    min-width: 45%; /* Ensures columns don't get too narrow */
    background-color: #fff; /* Adds a white background */
    border: 1px solid #ccc; /* Optional: Adds a border for visual separation */
    border-radius: 5px; /* Optional: Adds rounded corners */
}

#myChartSingle {
    max-width: 100%; /* Allows the chart to resize within its container */
    height: 100px; /* Maintains aspect ratio */
}

/* Media queries for responsiveness */
@media screen and (max-width: 1400px) {
    .two-column-section-analysis {
        flex-direction: column;
    }

    .column-analysis {
        min-width: 100%; /* Columns take full width on smaller screens */
    }
}

/* Adjusting the main content area */
