<style>
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
}

.container {
    max-width: 600px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-height: 300px;
    /* Set a minimum height */
    overflow: auto;
    /* Enable vertical scroll if needed */
    text-align: center;
}


.info-header{
    color: #F44336;
    font-family: 'Arial', sans-serif;
}

.information {
    text-align: left;
    font-family: 'Georgia', sans-serif;
}
/* File input styling */
#zipFileInput {
    display: none;
    /* Hide the default file input */
}

.file-input-container {
    display: inline-block;
    position: relative;
    cursor: pointer;
    background-color: #2196F3;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    overflow: hidden;
    transition: background-color 0.3s ease-in-out;
    margin-top: 15px;
}

.file-input-container:hover {
    background-color: #1565C0;
}

#zipFileInputLabel {
    position: relative;
    font-size: 16px;
    font-weight: bold;
}

#zipFileInputText {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.progress-container {
    width: 90%;
    background-color: #eee;
    margin: 20px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;

}

.progress-bar {
    width: 0%;
    height: 15px;
    background-color: #1565C0;
    text-align: center;
    line-height: 15px;
    color: white;
    transition: width 0.4s ease-in-out;
    border-radius: 8px;
}

.status-message {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #f3f3f3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: left;
}

.success {
    color: #1565C0;
}

.error {
    color: #F44336;
}

.check-button {
    padding: 15px 30px;
    margin: 20px 0;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.check-button:disabled {
    background-color: #ccc;
}

.check-button:hover {
    background-color: #1565C0;
}

.insights-button {
    padding: 15px 30px;
    margin: 20px 0;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.insights-button:disabled {
    background-color: #ccc;
}

.insights-button:hover {
    background-color: #1565C0;
}

#results {
    text-align: left;
    margin-top: 20px;
}

.user-not-following {
    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.user-not-following:hover {
    transform: scale(1.03);
}

.accordion {
    display: none;
    justify-content: space-between;
    
}

.accordion-item {
    width: 48%;
    /* Adjust the width as needed, accounting for some spacing between items */
    margin: 10px;
}

.accordion-input {
    display: none;
}

.accordion-label {
    display: block;
    padding: 10px;
    background-color: #3498db;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}


.accordion-input:checked+.accordion-label {
    background-color: #2980b9;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-input:checked+.accordion-label+.accordion-content {
    max-height: 1000px;
    /* Adjust to a sufficient height or use max-height: inherit; */
    overflow: visible;
}


.user-list {
    list-style-type: none;
    padding: 0;
}

.user-list li {
    margin-bottom: 5px;
}

.user-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.user-card a {
    text-decoration: none;
    /* Remove underline */
    color: #3498db;
    /* Change link color to your preference */
}

.card-content {
    padding: 10px;
    background-color: #f3f3f3;
    font-size: 16px;
    color: #333;
}

.insight-bar {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    height: 30px;
    /* Adjust the height as needed */
    background-color: #3498db;
    /* Default color for the bars */
}

/* Add these styles to your CSS file */
#insightsContainer {
    display: none;
    flex-direction: column;
    align-items: flex-start;
}

.button-container {
    display: flex;
    flex-direction: row;
    align-items: flex-center;
}

.button-container button {


    margin-right: 10px;
}

.bar-title {
    padding: 5px;
    color: #ffffff;
}

.insights-content {
    display: none;
    /* padding: 0 18px; */
    overflow: hidden;
    background-color: #fff;
}


.bar-insights-button {
    padding: 15px 30px;
    margin: 20px 0;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.show-reels-interaction {
    padding: 15px 30px;
    margin: 20px 0;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

#insightsContainerBars {
    width: 100%;
}
#insightsContainerComments {
    width: 100%;
}
#insightsContainerLiked {
    width: 100%;
}

/*Reels Insights*/

#insightsContainerReels {
    width: 100%;
}
/* Style for the bar container */
.bar-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

/* Style for each bar */
.bar {
    display: flex;
    align-items: center;
    height: 30px;   
    margin-bottom: 5px;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
}

/* Style for the linear gradient */
.bar-gradient {
    flex: 1;
    text-align: center;
    color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    width: 100%;

}

/* Style for the username */
.username {
    padding-right: 10px;
    color: #3498db;
    /* You can adjust the color */
}

.show-comments-interaction {
    padding: 15px 30px;
    margin: 20px 0;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.search-container {
    margin-top: 10px; /* Adjust the margin as needed */
    text-align: center; /* Centers the search bar and button */
}

.search-input {
    padding: 10px;
    border-radius: 5px; /* Rounded corners */
    width: 70%; /* Adjust width as needed */
    max-width: 400px; /* Ensures the search bar isn't too wide on larger screens */
}

.show-most-liked-account {
    padding: 15px 30px;
    margin: 20px 0;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

/*Added Later on there might be some duplicates we can remove those later*/
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    line-height: 1.6; /* Improves readability */
}

.container {
    max-width: 600px;
    margin: 40px auto; /* Increased top and bottom margin for better spacing */
    background-color: #fff;
    padding: 30px; /* Increased padding for better spacing */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 10px; /* Slightly larger radius for a modern look */
}

.container h2 {
    background: linear-gradient(to right, #6dd5fa, #2196F3); /* A cool blue gradient */
    color: white;
    padding: 10px 20px;
    border-radius: 8px; /* Slightly rounded corners for a modern look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    display: inline-block; /* Only as wide as it needs to be */
    margin-top: 0;
    margin-bottom: 30px; /* More space below the header */
    font-family: 'Roboto', sans-serif; /* A more modern font */
    font-size: 24px; /* Slightly larger font size */
    text-transform: uppercase; /* Uppercase for a more impactful look */
    letter-spacing: 1px; /* More spacing between letters */
}

.info-header {
    color: #F44336;
    margin-bottom: 10px; /* Add space below subheadings for separation */
}

.information {
    text-align: left;
    margin-bottom: 20px; /* Add space below text for separation */
}

.file-input-container {
    background-color: #2196F3;
    color: white;
    padding: 15px 30px; /* Larger padding for a bigger, more clickable area */
    border-radius: 30px; /* Rounded pill shape for modern look */
    transition: background-color 0.3s ease-in-out, transform 0.2s ease;
    display: inline-block; /* Aligns better with text */
}

.file-input-container:hover {
    background-color: #1565C0;
    transform: translateY(-2px); /* Slight raise effect on hover */
}

.progress-container {
    background-color: #eee;
    border-radius: 30px; /* Consistent with button shapes */
    overflow: hidden; /* Ensure children stay within the rounded corners */
    margin: 20px; /* More vertical space */
}

.progress-bar {
    background-color: #1565C0;
    height: 20px; /* Thicker bar for better visibility */
    line-height: 20px; /* Center text vertically */
}

.status-message {
    background-color: #f3f3f3;
    border-left: 4px solid #2196F3; /* Add a colored bar for visual interest */
}

.check-button, .insights-button {
    padding: 12px 25px; /* Uniform padding */
    border-radius: 30px; /* Rounded pill shape */
    font-weight: bold; /* Make text bold */
    margin: 10px 10px 10px 0; /* Consistent margin */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.check-button:hover, .insights-button:hover {
    background-color: #1976D2; /* A different shade for hover state */
}

/* Instruction Styles */

.instructions-wrapper {
    margin: 20px 0;
}

.accordion-toggle {
    
    padding: 10px 20px;
    text-align: left;
    outline: none;
    width: 100%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px; /* Fully rounded ends for a pill shape */
    border: 2px solid #2196F3; /* Solid border matching the primary color */
    font-weight: bold;
    transition: all 0.3s ease;
    background: #fff;
    color: #2196F3;
    padding: 10px 20px;
}

.accordion-toggle:hover, .accordion-toggle[aria-expanded="true"] {
    background: #2196F3;
    color: white;
}

.accordion-toggle .accordion-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 15px;
}

.accordion-toggle[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content-instruction {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f9f9f9;
    border-radius: 8px;
    padding-left: 20px;
}

.instructions-list {
    list-style: inside decimal;
    margin: 15px 0;
    padding: 0;
    text-align: left;
}

.instructions-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    padding: 5px 0;
    text-align: left;
}

.instructions-list li a {
    color: #2980b9;
    text-decoration: none;
}

.instructions-list li a:hover {
    text-decoration: underline;
}



</style>