/* Basic styles for the admin interface */
.tab-content {
  display: none;
}


.industry-list li {
  padding: 5px;
  cursor: pointer;
  background: white;
}

.industry-list li:hover {
  background-color: #f0f0f0;
}

.industry-list li {
  border-bottom: 1px solid #ddd;
}


.tab-content:first-of-type {
  display: block;
}
/* Styles for the nav tabs */
.nav-tab-wrapper {
  margin-bottom: 20px;
}

.google-signin-button {
  display: flex;
  align-items: center;
  background-color: #fff;
  color: #5f6368;
  border: 1px solid #dadce0;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: box-shadow 0.3s ease-in-out;
  outline: none;
}

.google-signin-button:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.google-logo {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.google-signin-button:active {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

.google-signin-button:focus {
  box-shadow: 0px 0px 4px rgba(66, 133, 244, 0.5);
}


#post-calendar-tab{
  height: 100vh;
}
.green-up-arrow {
  color: green;
  font-size: 20px; /* Adjust the size as needed */
}

.red-down-arrow {
  color: red;
  font-size: 20px; /* Adjust the size as needed */
}

.nav-tab {
  display: inline-block;
  padding: 10px 10px;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  color: #0073aa;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: max-content;
  align-items: center;
  justify-content: center;
  height: 6vh;
}

.nav-tab:hover {
  background-color: #e1e1e1;
}

.nav-tab-active {
  background-color: #fff;
  border-bottom: 1px solid #fff;
  font-weight: bold;
}

/* Styles for the tab content */
.tab-content {
  padding: 20px;
  border: 1px solid #ccc;
  background-color: #fff;
}

/* Styles for form elements */
.form-table th {
  width: 150px;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.form-table td {
  padding: 10px;
}

.form-table input[type="text"],
.form-table input[type="email"],
.form-table input[type="password"],
.form-table select,
.form-table textarea {
  width: 100%;
  max-width: 400px;
  padding: 8px;
  box-sizing: border-box;
}

.form-table input[type="submit"] {
  padding: 10px 20px;
  background-color: #0073aa;
  color: #fff;
  border: none;
  cursor: pointer;
}

.form-table input[type="submit"]:hover {
  background-color: #005177;
}

/* Styles for the widefat table */
.widefat th,
.widefat td {
  padding: 10px;
  vertical-align: middle;
}

.widefat th {
  background-color: #f9f9f9;
}

.widefat tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.widefat tbody tr:hover {
  background-color: #f1f1f1;
}

.widefat .column-action {
  width: 100px;
  text-align: center;
}

.widefat .button-secondary {
  background-color: #0073aa;
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.widefat .button-secondary:hover {
  background-color: #005177;
}

/* Additional styles for visual enhancements */
h2 {
  margin-top: 20px;
}

.submit {
  margin-top: 20px;
}

/* Spinner */
.spinner.is-active {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-left-color: #000;
  border-radius: 50%;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to { transform: rotate(360deg); }
}

/* Modal */
#related-posts-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  padding: 20px;
}

#related-posts-modal .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

#related-posts-modal .content {
  margin-top: 20px;
}

/* Widget Container */
.ai-content-pipelines-widget {
  background-color: #f7fafd; /* Light blue background */
  border-left: 4px solid #0073aa; /* WordPress blue border */
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Widget Title */
.ai-content-pipelines-widget h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #0073aa; /* WordPress blue */
}

/* Button */
.ai-content-pipelines-widget .button {
  background-color: #0073aa; /* WordPress blue */
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease; /* Smooth transition */
  margin-top: 10px;
}

/* Button Hover State */
.ai-content-pipelines-widget .button:hover {
  background-color: #005f8d; /* Slightly darker blue on hover */
}

/* Paragraph Margin */
.ai-content-pipelines-widget p {
  margin: 15px 0 0;
  text-align: center; /* Center-align the button */
}

.nav-tab-user-wrapper {
  margin-bottom: 20px;
}

.nav-tab-user {
  display: inline-block;
  padding: 10px 5px;
  margin-right: 5px;
  border: 1px solid #ccc;
  border-bottom: none;
  background-color: #f1f1f1;
  color: #0073aa;
  text-decoration: none;
  cursor: pointer;
}

.nav-tab-user:hover {
  background-color: #e1e1e1;
}

.nav-tab-user-active {
  background-color: #fff;
  border-bottom: 1px solid #fff;
  font-weight: bold;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.flex-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-weightage-item,
.template-weightage-item {
    width: 100%;
}

.weightage-input {
    width: 50px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin-top: 20px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* General Styles */
/* General Container */
#welcome-screen {
  font-family: 'Roboto', Arial, sans-serif;
  max-width: 900px;
  margin: 30px auto;
  padding: 40px;
  background-color: #f9f9fb;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  color: #2c3e50;
}

/* Title */
#welcome-title {
  font-size: 2.8em;
  font-weight: bold;
  color: #031325;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

/* Step Titles */
#step1-title, #step2-title, #settings-title, #calendar-title {
  font-size: 2.4em;
  color: #021222;
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid #08233f;
  padding-bottom: 5px;
}

/* Sub-Headers */
#step1-required-title, #step1-optional-title, #step1-seo-title, 
#step1-review-title, #step2-workflow-title, #step2-details-title, 
#step2-generate-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #2c3e50;
  margin-top: 25px;
  margin-bottom: 15px;
}

/* Paragraphs */
#welcome-description, #welcome-instructions, #step1-description, 
#step1-required-description, #step1-enhance, #step1-optional-description, 
#step1-business-details, #step1-seo-description, #step1-review-description, 
#step2-description, #step2-workflow-description, #step2-details-description, 
#step2-generate-description, #settings-description, #calendar-description, 
#thank-you {
  font-size: 1.2em;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Lists */
#step1-required-list, #step1-business-details-list, #step2-workflow-list, #settings-list, #calendar-list {
  margin-top: 15px;
  margin-left: 20px;
  padding-left: 20px;
  list-style-type: disc; /* Explicit bullet points */
}

#step1-required-list li, #step1-business-details-list li, #step2-workflow-list li, #settings-list li, #calendar-list li {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #2c3e50;
}

.highlight {
  background-color: #e6f0ff;
  padding: 4px 8px;
  border-radius: 5px;
  font-weight: bold;
  color: #003366;
}






            /* Fancy UI Styling */
            .gsc-fancy-button {
                background-color: #28a745;
                color: white;
                border: none;
                padding: 10px 20px;
                border-radius: 25px;
                font-size: 16px;
                cursor: pointer;
                transition: background-color 0.3s ease;
            }

            .gsc-fancy-button:hover {
                background-color: #218838;
            }

            .gsc-styled-select {
                padding: 10px;
                font-size: 16px;
                border: 1px solid #ccc;
                border-radius: 8px;
                margin-bottom: 20px;
            }

            .gsc-fancy-label {
                margin-right: 10px;
                font-size: 16px;
                color: #333;
            }

            .gsc-fancy-input {
                padding: 8px;
                font-size: 14px;
                border: 1px solid #ccc;
                border-radius: 8px;
                margin: 5px 10px;
            }

            /* Table Styling */
            .gsc-fancy-table-container {
                margin-top: 20px;
            }

            table {
                width: 100%;
                border-collapse: collapse;
                margin: 25px 0;
                font-size: 16px;
                font-family: 'Arial', sans-serif;
                border: 1px solid #ddd;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            }

            th,
            td {
                padding: 12px 15px;
                text-align: left;
                border-bottom: 1px solid #ddd;
            }

            th {
                background-color: #f2f2f2;
                color: #333;
                font-weight: bold;
            }

            tr {
                transition: background-color 0.3s ease;
            }

            tr:hover {
                background-color: #f9f9f9;
            }

            h3 {
                color: #333;
                font-weight: 600;
                border-bottom: 2px solid #ddd;
                padding-bottom: 5px;
                margin-bottom: 15px;
            }

            .gsc-analytics-section {
                margin-top: 15px;
            }

            .my-plugin-review-notice {
              border-left: 6px solid #ff9800; /* Bright orange border */
              background: linear-gradient(to right, #fefcea, #f1da36); /* Subtle yellow gradient */
              padding: 20px;
              color: #333;
              box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
              border-radius: 10px;
              margin-top: 20px;
          }
          
          .my-plugin-review-notice h2 {
              font-size: 1.8em;
              color: #d35400; /* Eye-catching orange */
              text-align: center;
              margin-bottom: 10px;
              font-weight: bold;
              font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
          }
          
          .my-plugin-review-notice p {
              font-size: 1.2em;
              line-height: 1.6;
              margin: 10px 0;
              text-align: center;
          }
          
          .my-plugin-review-notice .highlight-text {
              margin-top: 15px;
              text-align: center;
          }
          
          .my-plugin-review-notice .review-link {
              display: inline-block;
              font-size: 1.4em;
              color: #ffffff;
              background-color: #d35400;
              padding: 10px 20px;
              border-radius: 8px;
              text-decoration: none;
              font-weight: bold;
              transition: all 0.3s ease;
          }
          
          .my-plugin-review-notice .review-link:hover {
              background-color: #e67e22; /* Slightly lighter orange */
              text-decoration: underline;
          }
          
          /* Responsive Adjustments */
          @media (max-width: 600px) {
              .my-plugin-review-notice h2 {
                  font-size: 1.5em;
              }
          
              .my-plugin-review-notice p {
                  font-size: 1em;
              }
          
              .my-plugin-review-notice .review-link {
                  font-size: 1.2em;
                  padding: 8px 16px;
              }
          }
          
          

          /* Form Container */
#social-media-form {
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-width: 600px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

/* Form Title */
#social-media-form h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

/* Social Media Section */
#social-media-form p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

/* Label for Checkbox + Image */
#social-media-form label {
  display: inline-block;
  text-align: center;
  margin-right: 15px;
  cursor: pointer;
}

/* Platform Logos */
.platform-logo {
  width: 40px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: opacity 0.3s;
}

/* Highlight selected platforms */
#social-media-form input[type="checkbox"]:checked + .platform-logo {
  opacity: 0.5; /* Dim non-selected platforms */
}

/* Dropdown and Textarea Styling */
#social-media-form select,
#social-media-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#social-media-form textarea {
  resize: none;
}

/* Submit Button */
#generate-button-social-media {
  background-color: #0073aa;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#generate-button-social-media:disabled {
  background-color: #ccc; /* Light gray background */
  color: #666; /* Subtle text color */
  cursor: not-allowed; /* Show a disabled cursor */
  opacity: 0.6; /* Visual indication of being disabled */
}


#generate-button-social-media:hover {
  background-color: #005a87;
}

/* Result Message */
#result-message {
  margin-top: 20px;
  font-size: 1rem;
  color: #28a745;
  text-align: center;
}

/* Full-width preview section */
#preview-section {
  display: none;
  width: 100%; /* Full width */
  margin-top: 20px;
  padding: 20px;
  background-color: #f9f9f9; /* Light gray background */
  border: 1px solid #ddd; /* Subtle border */
  border-radius: 8px;
  box-sizing: border-box; /* Include padding in width */
}

/* Title Input Styling */
#preview-title {
  width: 100%; /* Full width */
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Content Textarea Styling */
#preview-content {
  width: 100%; /* Full width */
  font-size: 1rem;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical; /* Allow resizing vertically */
}

/* Image Preview */
#preview-image {
  max-width: 100%; /* Image spans full width if needed */
  height: auto;
  display: block;
  margin-bottom: 20px;
}

/* Save and Publish Button */
#save-and-publish-button {
  background-color: #0073aa; /* WordPress blue */
  color: white;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#save-and-publish-button:hover {
  background-color: #005a87; /* Darker blue on hover */
}
