/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

input,
button {
  font-family: inherit;
}

/* Header Styles */
.header {
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
  position: relative;
  z-index: 100;
  background-color: #fff;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-search {
  display: flex;
  align-items: center;
}

.logo img {
  height: 32px;
}

.search-bar {
  position: relative;
  margin-left: 20px;
}

.search-bar input {
  width: 250px;
  padding: 8px 35px 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}

.search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 0 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-search-toggle,
.mobile-menu-toggle {
  display: none;
  font-size: 18px;
  color: #333;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.mobile-menu-toggle {
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #333;
  transition: all 0.3s;
}

.explore-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: 14px;
  padding: 8px 12px;
}

.counselling-btn {
  background-color: #ffd54f;
  color: #333;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

/* Mobile Search */
.mobile-search {
  display: none;
  padding: 10px 0;
  border-top: 1px solid #eee;
}

.mobile-search.active {
  display: block;
}

.mobile-search .search-container {
  position: relative;
}

.mobile-search input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.mobile-search .search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 0 15px;
  font-size: 16px;
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background-color: #fff;
  z-index: 999;
  overflow-y: auto;
  transition: left 0.3s;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.mobile-logo {
  height: 30px;
}

.mobile-menu-close {
  font-size: 20px;
  color: #666;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  flex: 1;
  padding: 15px 0;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
}

.mobile-nav li {
  border-bottom: 1px solid #f5f5f5;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  color: #333;
  font-size: 16px;
  transition: background-color 0.2s;
}

.mobile-nav a:hover {
  background-color: #f9f9f9;
}

.mobile-nav i {
  width: 20px;
  text-align: center;
  color: #4caf50;
}

.mobile-menu-footer {
  padding: 15px;
  border-top: 1px solid #eee;
}

.counselling-btn-mobile {
  background-color: #ffd54f;
  color: #333;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  text-align: center;
}

/* Breadcrumb Styles */
.breadcrumb {
  background-color: #f9f9f9;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
}

.breadcrumb li {
  position: relative;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 5px;
  color: #999;
}

.breadcrumb a {
  color: #666;
}

.breadcrumb a:hover {
  color: #4caf50;
}

.breadcrumb li:last-child {
  color: #999;
}

/* Main Content Styles */
.main-content {
  padding: 20px 0 40px;
}

/* Title Section */
.title-section {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.title-content {
  flex: 1;
}

.title-image {
  width: 33%;
}

.title-image img {
  width: 100%;
  border-radius: 6px;
}

h1 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.register-box {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  display: inline-block;
  margin-bottom: 15px;
}

.register-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.register-text {
  font-weight: 500;
}

.register-subtext {
  font-size: 12px;
  color: #777;
}

.apply-btn {
  background-color: #ffd54f;
  padding: 5px 15px;
  border-radius: 3px;
  font-size: 13px;
  
}

.share-section {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #666;
  flex-wrap: wrap;
}

.social-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-icons a {
  color: #777;
  transition: color 0.2s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  color: #333;
}

/* Content Wrapper */
.content-wrapper {
  display: flex;
  gap: 30px;
}

.main-column {
  flex: 2;
}

.sidebar {
  flex: 2;
}

/* College Table Styles */
.college-table {
  margin-bottom: 30px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.table-header {
  display: flex;
  background-color: #e3f2fd;
  padding: 12px 0;
}

.col {
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
}

.col-colleges {
  width: 50%;
}

.col-ranking {
  width: 17%;
}

.col-fees {
  width: 25%;
}

.col-placement {
  width: 25%;
}

.mobile-label {
  display: none;
  font-weight: 700;
  margin-bottom: 5px;
  color: #555;
}

.college-row {
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  transition: background-color 0.2s;
}

.college-row:last-child {
  border-bottom: none;
}

.college-row:hover {
  background-color: #f9f9f9;
}

.college-info {
  display: flex;
  gap: 10px;
}

.college-logo {
  width: 100px;
  height: 50px;
  object-fit: contain;
}

.college-details h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 3px;
}

.location,
.approval {
  font-size: 12px;
  color: #777;
  margin-bottom: 3px;
}

.approval span {
  font-weight: 500;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}

.rating-badge {
  background-color: #eee;
  color: #333;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.more-link {
  font-size: 12px;
  color: #2196f3;
}

.rank {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 5px;
}

.year-badge {
  background-color: #333;
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 2px;
  display: inline-block;
}

.fees,
.avg-package,
.high-package {
  color: #4caf50;
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 2px;
}

.course,
.year,
.package-text {
  font-size: 12px;
  color: #777;
  margin-bottom: 2px;
}

.action-links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center; /* Center the buttons horizontally */
  width: 100%; /* Ensure the container takes full width */
}

.download-link {
  color: #4caf50;
  font-size: 12px;
  padding: 5px 0;
}

.apply-link {
  color: #cd0000;
  font-size: 12px;
  padding: 5px 0;
}

/* Application Forms Section */
.application-forms {
  margin-bottom: 30px;
}

.application-forms h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.form-card {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-header {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.university-icon {
  width: 32px;
  height: 32px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.university-info h3 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.card-body {
  padding: 0 12px 12px;
  flex-grow: 1;
}

.location {
  font-size: 12px;
  color: #777;
  margin-bottom: 5px;
}

.course-info {
  font-size: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.course {
  font-weight: 500;
}

.dot {
  margin: 0 5px;
  color: #999;
}

.fees {
  color: #777;
}

.apply-button,
.callback-button {
  width: 100%;
  padding: 12px 0;
  font-size: 14px;
  text-align: center;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
}

.apply-button {
  background-color: #ff5722;
  color: white;
}

.callback-button {
  background-color: #2196f3;
  color: white;
}

.apply-button:hover {
  background-color: #e64a19;
}

.callback-button:hover {
  background-color: #1976d2;
}

/* Expert Section */
.expert-section {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 30px;
}

.expert-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.expert-avatar {
  width: 48px;
  height: 48px;
  background-color: #fff3e0;
  color: #ff9800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  flex-shrink: 0;
}

.expert-info h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 3px;
}

.expert-info p {
  font-size: 12px;
  color: #777;
}

.expert-content {
  font-size: 14px;
  line-height: 1.6;
}

.expert-content p {
  margin-bottom: 10px;
}

.expert-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.expert-content li {
  margin-bottom: 8px;
}

.expert-content a {
  color: #4caf50;
}

.read-more {
  background: none;
  border: none;
  color: #2196f3;
  font-size: 12px;
  padding: 5px 0;
  margin-top: 10px;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 30px;
}

.faq-section h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-section > p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 12px 15px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  min-height: 48px;
}

.faq-question span {
  flex: 1;
  padding-right: 10px;
}

.faq-question i {
  color: #999;
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 15px 15px;
  font-size: 14px;
  display: none;
}

/* Newsletter */
.newsletter-wrapper {
  background-color: #4caf50;
  width: 100%;
  margin-bottom: 30px;
}

.newsletter {
  color: white;
  padding: 25px 0;
}

.newsletter h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.newsletter p {
  font-size: 14px;
  margin-bottom: 15px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
}

.subscribe-btn {
  background-color: #ffd54f;
  color: #333;
  padding: 12px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  width: 100%;
  transition: background-color 0.2s;
}

.subscribe-btn:hover {
  background-color: #ffc107;
}

/* Sidebar Styles */
.sidebar-box {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

.sidebar-box h3 {
  background-color: #f5f5f5;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 700;
}

.course-list,
.city-list {
  border-top: 1px solid #eee;
}

.course-list li,
.city-list li {
  border-bottom: 1px solid #eee;
}

.course-list a,
.city-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  font-size: 14px;
  transition: background-color 0.2s;
  min-height: 44px;
}

.course-list a:hover,
.city-list a:hover {
  background-color: #f5f5f5;
}

.course-list i,
.city-list i {
  color: #ccc;
  font-size: 12px;
}

.video-player {
  margin-bottom: 20px;
}

.video-placeholder {
  background-color: #f0f0f0;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  border-radius: 6px;
}

/* Footer Styles */
.footer {
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 40px 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 5px;
}

.footer-logo p {
  font-size: 12px;
  color: #777;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  color: #777;
  transition: color 0.2s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: #333;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column a {
  font-size: 12px;
  color: #666;
  transition: color 0.2s;
  padding: 3px 0;
  display: inline-block;
}

.footer-column a:hover {
  color: #4caf50;
}

.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
  justify-content: center;
}

.footer-nav a {
  font-size: 12px;
  color: #666;
  padding: 5px;
}

.footer-nav span {
  color: #ccc;
}

.footer-contact {
  text-align: center;
  margin-bottom: 15px;
}

.footer-contact a {
  font-size: 12px;
  color: #666;
  padding: 5px;
  display: inline-block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #eee;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.copyright {
  font-size: 12px;
  color: #777;
}

.footer-terms {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-terms a {
  font-size: 12px;
  color: #666;
  padding: 3px 0;
}

.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.callback-btn,
.counselling-btn {
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  min-width: 180px;
  text-align: center;
  transition: all 0.2s;
}

.callback-btn {
  border: 1px solid #4caf50;
  color: #4caf50;
  background: none;
}

.callback-btn:hover {
  background-color: rgba(76, 175, 80, 0.1);
}

.counselling-btn {
  background-color: #ffd54f;
  color: #333;
}

.counselling-btn:hover {
  background-color: #ffc107;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .title-section {
    flex-direction: column;
  }

  .title-image {
    width: 100%;
  }

  .content-wrapper {
    flex-direction: column;
  }

  /* Mobile layout adjustments */
  .main-content {
    display: flex;
    flex-direction: column;
  }

  .content-wrapper {
    order: 1;
  }

  .newsletter-wrapper {
    order: 3;
  }

  /* On mobile, we'll reorder the content-wrapper children */
  .content-wrapper {
    display: flex;
    flex-direction: column;
  }

  .main-column {
    order: 2;
  }

  .sidebar {
    order: 99; /* Sidebar appears before main content on mobile */
    margin-top: 20px;
  }

  .explore-btn {
    display: none;
  }

  .mobile-search-toggle,
  .mobile-menu-toggle {
    display: flex;
  }

  .search-bar {
    display: none;
  }

  .forms-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    gap: 15px;
  }

  .logo-search {
    width: auto;
  }

  .header-actions {
    width: auto;
  }

  .table-header {
    display: none;
  }

  /* Modify the college row display for mobile */
  .college-table {
    border: none;
    background-color: transparent;
    margin-bottom: 20px;
  }

  .college-row {
    display: block;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    background-color: #fff;
    overflow: hidden;
  }

  /* ROW 1: College info section */
  .col-colleges {
    width: 100%;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  /* Center align college info on mobile */
  .college-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .college-logo {
    margin-bottom: 10px;
    width: 150px;
    height: 60px;
  }

  .college-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .location,
  .approval {
    text-align: center;
    margin-bottom: 5px;
  }

  .rating {
    justify-content: center;
    margin: 8px 0;
  }

  /* ROW 2: Info columns section */
  .col-ranking,
  .col-fees,
  .col-placement {
    width: 33.33%;
    float: left;
    text-align: center;
    padding: 10px 5px;

  }

  /* Add separators between columns */
  .col-fees {
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
  }

  .mobile-label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    color: #555;
    font-size: 12px;
  }

  .rank,
  .fees,
  .avg-package,
  .high-package {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .course,
  .year,
  .package-text {
    font-size: 11px;
    margin-bottom: 2px;
  }

  /* Hide action links in the placement column */
  .col-placement .action-links {
    display: none;
  }

  /* ROW 3: Action buttons section */
  .college-row::after {
    content: "";
    display: block;
    clear: both;
  }

  .college-row .action-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    gap: 10px;
    width: 100%;
    margin-top: 0;
  }

  .apply-btn {
    padding: 10px 15px;
    background-color: #ffd54f;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    color: #333;
    border: none;
    width: 100%;
    text-align: center;
  }
}

.scroll-wrapper {
  display: flex;
  
  position: relative;
  margin: 20px 0;
  gap: 10px;
}

/* Scroll buttons on sides */
.scroll-btn {
  background: none;
  border: none;
  font-size: 20px;
  padding: 6px;
  cursor: pointer;
  color: #444;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
}

/* Fade when disabled */
.scroll-btn.disabled {
  opacity: 0.3;
  cursor: default;
}

/* Scrollable container */
.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  flex: 1;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

/* Yellow buttons */
.tab-button {
  background-color: #ffda45;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  color: #000;
  transition: background-color 0.3s ease;
}

.tab-button:hover {
  background-color: #f4c930;
}

/* Hide arrows on desktop */
@media (min-width: 768px) {
  .scroll-btn {
    display: none;
  }

  .scroll-wrapper {
    justify-content: flex-start;
  }
}



@media (max-width: 576px) {
  h1 {
    font-size: 20px;
  }

  .register-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .forms-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .callback-btn,
  .counselling-btn {
    width: 100%;
    min-width: auto;
  }

  .expert-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }

  .expert-avatar {
    margin: 0 auto 10px;
  }

  .expert-info {
    text-align: center;
    width: 100%;
  }

  /* Adjust for very small screens */
  .mobile-label {
    font-size: 11px;
  }

  .rank,
  .fees,
  .avg-package,
  .high-package {
    font-size: 12px;
  }

  .course,
  .year,
  .package-text {
    font-size: 10px;
  }

  .download-link,
  .apply-link {
    padding: 8px 15px;
    background-color: #ffd65f;
    border-radius: 4px;
    text-align: center;
    min-width: 120px;
  }
  
}
