/* Modern Submissions Page Styling - Green Theme */

/* Page Container */
.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #1f2937;
}

.page_submissions {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  min-height: 100vh;
  padding: 40px 20px;
}

/* Breadcrumbs Styling */
.breadcrumbs {
  margin-bottom: 30px;
  padding: 15px 0;
  border-bottom: 1px solid #e5e7eb;
}

.breadcrumbs a {
  color: #16a34a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #15803d;
}

.breadcrumbs .separator {
  margin: 0 12px;
  color: #9ca3af;
}

/* Main Heading */
.page_submissions h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page_submissions h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 2px;
}

/* Notification Card */
.cmp_notification {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #22c55e;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 10px 25px -5px rgba(34, 197, 94, 0.1);
  position: relative;
  overflow: hidden;
}

.cmp_notification::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.cmp_notification p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin: 0;
  color: #374151;
  text-align: center;
}

.cmp_notification a {
  color: #16a34a;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  background: #f0fdf4;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0 4px;
}

.cmp_notification a:hover {
  background: #16a34a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

/* Card Sections */
.author_guidelines,
.submission_checklist,
.copyright_notice,
.privacy_statement {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.author_guidelines:hover,
.submission_checklist:hover,
.copyright_notice:hover,
.privacy_statement:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.author_guidelines::before,
.submission_checklist::before,
.copyright_notice::before,
.privacy_statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

/* Section Headings */
.author_guidelines h2,
.submission_checklist h2,
.copyright_notice h2,
.privacy_statement h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 25px;
  position: relative;
  padding-left: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.author_guidelines h2::before,
.submission_checklist h2::before,
.copyright_notice h2::before,
.privacy_statement h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 35px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 2px;
}

/* Edit Link Styling */
.edit-link {
  display: inline-flex;
  align-items: center;
  background: #f0fdf4;
  color: #16a34a;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: 1px solid #dcfce7;
}

.edit-link:hover {
  background: #16a34a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.edit-link::before {
  content: '✏️';
  margin-right: 6px;
  font-size: 0.75rem;
}

/* General Content Cards */
.content-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #22c55e;
}

.content-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

/* Section Titles */
.content-section h2,
.content-section h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.content-section h2::after,
.content-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 2px;
}

/* Numbered Section Headers */
.content-section h2:first-of-type {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Content Typography */
.author_guidelines p,
.submission_checklist p,
.copyright_notice p,
.privacy_statement p,
.content-section p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 20px;
  text-align: justify;
}

.author_guidelines h3,
.submission_checklist h3,
.copyright_notice h3,
.privacy_statement h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
  margin-top: 30px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.author_guidelines h3::before,
.submission_checklist h3::before,
.copyright_notice h3::before,
.privacy_statement h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 25px;
  background: #22c55e;
  border-radius: 2px;
}

/* Lists Styling */
.author_guidelines ul,
.author_guidelines ol,
.submission_checklist ul,
.submission_checklist ol,
.copyright_notice ul,
.copyright_notice ol,
.privacy_statement ul,
.privacy_statement ol,
.content-section ul,
.content-section ol {
  padding-left: 0;
  margin-bottom: 25px;
}

.author_guidelines li,
.submission_checklist li,
.copyright_notice li,
.privacy_statement li,
.content-section li {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  position: relative;
  transition: all 0.3s ease;
  list-style: none;
}

.author_guidelines li:hover,
.submission_checklist li:hover,
.copyright_notice li:hover,
.privacy_statement li:hover,
.content-section li:hover {
  background: #f0fdf4;
  border-color: #22c55e;
  transform: translateX(5px);
}

.author_guidelines li::before,
.submission_checklist li::before,
.copyright_notice li::before,
.privacy_statement li::before,
.content-section li::before {
  content: '✓';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  background: #22c55e;
  color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Special styling for submission checklist */
.submission_checklist {
  border-left: 4px solid #22c55e;
}

.submission_checklist li::before {
  content: '📋';
  background: #16a34a;
}

/* Links */
.author_guidelines a,
.submission_checklist a,
.copyright_notice a,
.privacy_statement a,
.content-section a {
  color: #16a34a;
  text-decoration: none;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.author_guidelines a:hover,
.submission_checklist a:hover,
.copyright_notice a:hover,
.privacy_statement a:hover,
.content-section a:hover {
  background: #f0fdf4;
  color: #15803d;
}

/* Special styling for italic text in lists */
.content-section li em,
.content-section li i {
  color: #6b7280;
  font-style: italic;
}

/* Special Card Types */
.general-provisions-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  border-left: 4px solid #22c55e;
}

.article-types-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border-left: 4px solid #16a34a;
}

.article-types-card h2::after,
.article-types-card h3::after {
  background: linear-gradient(90deg, #16a34a, #15803d);
}

/* Article type list special styling */
.article-types-card li::before {
  content: '📄';
  background: #16a34a;
  font-size: 0.7rem;
}

/* Highlighted important text */
.content-section strong,
.content-section b {
  color: #16a34a;
  font-weight: 600;
}

/* Special Icons for Different Sections */
.author_guidelines h2::after {
  content: '📝';
  font-size: 1.5rem;
  margin-left: 10px;
}

.submission_checklist h2::after {
  content: '✅';
  font-size: 1.5rem;
  margin-left: 10px;
}

.copyright_notice h2::after {
  content: '©️';
  font-size: 1.5rem;
  margin-left: 10px;
}

.privacy_statement h2::after {
  content: '🔒';
  font-size: 1.5rem;
  margin-left: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page {
    padding: 0 15px;
  }
  
  .page_submissions {
    padding: 25px 15px;
  }
  
  .page_submissions h1 {
    font-size: 2.25rem;
    margin-bottom: 30px;
  }
  
  .author_guidelines,
  .submission_checklist,
  .copyright_notice,
  .privacy_statement,
  .content-section {
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .cmp_notification {
    padding: 20px;
  }
  
  .author_guidelines h2,
  .submission_checklist h2,
  .copyright_notice h2,
  .privacy_statement h2 {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .edit-link {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .page_submissions h1 {
    font-size: 1.875rem;
  }
  
  .author_guidelines p,
  .submission_checklist p,
  .copyright_notice p,
  .privacy_statement p,
  .content-section p {
    font-size: 1rem;
    text-align: left;
  }
  
  .author_guidelines,
  .submission_checklist,
  .copyright_notice,
  .privacy_statement,
  .content-section {
    padding: 20px 15px;
  }
  
  .author_guidelines li,
  .submission_checklist li,
  .copyright_notice li,
  .privacy_statement li,
  .content-section li {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}

/* Animation Effects */
.page_submissions {
  animation: fadeInUp 0.6s ease-out;
}

.author_guidelines,
.submission_checklist,
.copyright_notice,
.privacy_statement,
.content-section {
  animation: slideInUp 0.8s ease-out;
}

.author_guidelines:nth-child(2) { animation-delay: 0.1s; }
.submission_checklist:nth-child(3) { animation-delay: 0.2s; }
.copyright_notice:nth-child(4) { animation-delay: 0.3s; }
.privacy_statement:nth-child(5) { animation-delay: 0.4s; }
.content-section:nth-child(even) { animation-delay: 0.2s; }
.content-section:nth-child(odd) { animation-delay: 0.1s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Print Styles */
@media print {
  .page_submissions {
    background: none !important;
    box-shadow: none !important;
  }
  
  .edit-link {
    display: none !important;
  }
  
  .breadcrumbs {
    display: none !important;
  }
  
  .author_guidelines,
  .submission_checklist,
  .copyright_notice,
  .privacy_statement,
  .content-section {
    box-shadow: none !important;
    border: 1px solid #e5e7eb !important;
  }
  
  .author_guidelines:hover,
  .submission_checklist:hover,
  .copyright_notice:hover,
  .privacy_statement:hover,
  .content-section:hover {
    transform: none !important;
  }
}