/* General Styles */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 20px;
  background: #f4f4f4;
  color: #333;
}

/* Container Styling */
.container {
  max-width: 1700px; /* Increased width */
  margin: 0 auto; /* Center align */
  padding: 20px;
  margin-top: 100px;
}

.call-for-paper,
.track-list,
.important-dates {
  background: #ffffff;
  padding: 50px;

  margin: 20px auto;
  width: 1200px; /* Keeping content width fixed */
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Headings */
h2 {
  color: #036633;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

hr {
  width: 60px;
  border: 3px solid #036633;
  border-radius: 10px;
  margin: 10px auto 20px;
}

/* Paragraph */
p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

/* Track Section */
.track-container {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Ensures content stays centered */
}

.track {
  margin-bottom: 20px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 900px;
  padding: 0;

}

/* Track Title */
.track-title {
  background: #138d38;
  color: white;
  font-weight: bold;
  font-size: 18px;
  padding: 12px 20px;
  text-transform: uppercase;
  border-radius: 8px 8px 0 0;
}

/* Track Description */
.track-description {
  padding: 15px 20px;
  font-size: 16px;
  color: #444;
  background: white;
}

/* Important Dates Table */
.important-dates table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.important-dates td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  text-align: left;
}

.important-dates tr:hover {
  background: #e9f5ff;
}

/* Highlighted Text */
.highlight-text {
  font-weight: bold;
  font-size: 18px;
}

.highlight-date {
  font-weight: bold;
  color: red;
  font-size: 18px;
}

/* Note Section */
.note {
  margin-top: 15px;
  font-size: 15px;
  color: #444;
  background: #fffae6;
  padding: 12px;
  border-left: 6px solid #ffcc00;
  border-radius: 6px;
}
.track-list > p {
  width: 80%;
  text-align: center;
  /* justify-items: center; */
  margin: auto;
}
.call {
  padding-top: 100px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 10px;
  }

  .call-for-paper,
  .track-list,
  .important-dates,
  .track {
    width: 100%;
    padding: 20px;
  }

  h2 {
    font-size: 24px;
  }

  .track-title {
    font-size: 17px;
    padding: 10px 15px;
  }

  .track-description {
    font-size: 15px;
    padding: 12px 15px;
  }

  .important-dates td {
    font-size: 15px;
  }

  .highlight-text,
  .highlight-date {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .track {
    width: 100%;
  }
}

/* Publication Section */
.publication {
  background: #ffffff;
  padding: 50px;
  margin: 20px auto;
  width: 1200px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.publication p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
  text-align: center;
}

.publication-details {
  margin-top: 20px;
  background: #f9f9f9;
  padding: 20px;
  border-left: 6px solid #138d38;
  border-radius: 8px;
}

.publication-details p {
  font-size: 16px;
  margin: 10px 0;
  color: #333;
  text-align: left;
}

.publication-details a {
  color: #138d38;
  text-decoration: none;
  font-weight: bold;
}

.publication-details a:hover {
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .publication {
    width: 100%;
    padding: 20px;
  }
}

/* Submission Guidelines Section */
.submission-guidelines {
  background: #ffffff;
  padding: 50px;
  margin: 20px auto;
  width: 1200px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Paragraph same as global style */
.submission-guidelines p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

/* Guidelines List */
.guidelines-list {
  margin-top: 20px;
  padding-left: 40px;
}

.guidelines-list li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
  line-height: 1.6;
}

/* CMT Link Styling */
.submission-guidelines a {
  color: #138d38;
  text-decoration: none;
  font-weight: bold;
}

.submission-guidelines a:hover {
  text-decoration: underline;
}

/* Taylor & Francis Section */
.taylor-francis-section {
  margin-top: 30px;
  text-align: center;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 8px;
  border: 2px solid #138d38;
}

.taylor-francis-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.taylor-francis-section p {
  font-size: 16px;
  color: #555;
  text-align: center;
  margin: 0;
  font-weight: 500;
}
