/* Report Detail Page Styles */

/* Report Detail Header */
.report-detail-header {
  background: var(--card-bg);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.report-meta-info {
  margin-bottom: 20px;
}

.report-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.category-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}

.category-badge.hot {
  background: linear-gradient(45deg, #ff4757, #ff3742);
  box-shadow: 0 3px 10px rgba(255, 71, 87, 0.3);
}

.category-name {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
}

.report-title {
  color: var(--text-color);
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 25px;
}

.report-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.author-name {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 5px;
}

.publish-date {
  color: var(--text-color);
  opacity: 0.7;
  font-size: 14px;
}

.report-stats {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
  opacity: 0.8;
  font-size: 14px;
}

.stat-item i {
  color: var(--primary-color);
  font-size: 16px;
}

.report-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.report-actions .btn {
  min-width: 180px;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-download {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-download:hover {
  background: #0d2d87;
  border-color: #0d2d87;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 55, 161, 0.3);
}

.btn-share:hover,
.btn-bookmark:hover {
  transform: translateY(-2px);
}

/* Report Content Section */
.report-content-section {
  padding: 60px 0;
  background: var(--bg-color);
}

.report-featured-image {
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.report-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  background: var(--card-bg);
  padding: 15px 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-color);
  opacity: 0.8;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.image-caption i {
  color: var(--primary-color);
}

/* Content Sections */
.content-section {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.section-title {
  color: var(--text-color);
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary-color);
}

/* Summary Highlights */
.summary-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.highlight-card.positive .highlight-icon {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.highlight-card.warning .highlight-icon {
  background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.highlight-card.neutral .highlight-icon {
  background: linear-gradient(135deg, #6c757d, #495057);
}

.highlight-content h4 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 18px;
}

.highlight-content p {
  color: var(--text-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

.summary-text {
  line-height: 1.7;
  color: var(--text-color);
}

.summary-text p {
  margin-bottom: 20px;
  font-size: 16px;
}

/* Chart Container */
.chart-container {
  margin-bottom: 40px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.chart-header h3 {
  color: var(--text-color);
  font-weight: 600;
  margin: 0;
  font-size: 20px;
}

.chart-controls {
  display: flex;
  gap: 8px;
}

.chart-controls .btn {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
}

.chart-wrapper {
  background: var(--bg-color);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid var(--border-color);
}

/* Key Metrics */
.key-metrics {
  margin-bottom: 40px;
}

.metric-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.metric-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), #0d2d87);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin: 0 auto 20px;
}

.metric-value {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 8px;
}

.metric-label {
  color: var(--text-color);
  opacity: 0.7;
  margin-bottom: 10px;
  font-size: 14px;
}

.metric-change {
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

.metric-change.positive {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.metric-change.negative {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.metric-change.neutral {
  background: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

/* Analysis Text */
.analysis-text {
  line-height: 1.7;
  color: var(--text-color);
}

.analysis-text h3 {
  color: var(--text-color);
  font-weight: 600;
  margin: 30px 0 20px 0;
  font-size: 22px;
}

.analysis-text p {
  margin-bottom: 20px;
  font-size: 16px;
}

/* Outlook Cards */
.outlook-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.outlook-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}

.outlook-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.outlook-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.outlook-header i {
  color: var(--primary-color);
  font-size: 24px;
}

.outlook-header h4 {
  color: var(--text-color);
  font-weight: 600;
  margin: 0;
  font-size: 18px;
}

.outlook-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.outlook-content li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 25px;
  color: var(--text-color);
  line-height: 1.6;
}

.outlook-content li:last-child {
  border-bottom: none;
}

.outlook-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
}

/* Recommendations */
.recommendations h3 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 22px;
}

.recommendation-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recommendation-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--bg-color);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.recommendation-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.rec-action {
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  color: white;
  min-width: 80px;
  text-align: center;
  flex-shrink: 0;
}

.recommendation-item.buy .rec-action {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.recommendation-item.hold .rec-action {
  background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.recommendation-item.sell .rec-action {
  background: linear-gradient(135deg, #dc3545, #c82333);
}

.rec-content h5 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 18px;
}

.rec-content p {
  color: var(--text-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

/* Risk Assessment */
.risk-assessment {
  text-align: center;
}

.risk-meter {
  margin-bottom: 40px;
}

.risk-level {
  width: 250px;
  height: 125px;
  border-radius: 125px 125px 0 0;
  background: linear-gradient(90deg, #28a745 0%, #ffc107 50%, #dc3545 100%);
  position: relative;
  margin: 0 auto 20px;
  overflow: hidden;
}

.risk-indicator {
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 100px;
  background: white;
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.risk-level.low .risk-indicator {
  left: 25%;
}

.risk-level.moderate .risk-indicator {
  left: 50%;
}

.risk-level.high .risk-indicator {
  left: 75%;
}

.risk-label {
  font-weight: 600;
  color: var(--text-color);
  font-size: 18px;
}

.risk-factors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  text-align: left;
}

.risk-category h4 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 20px;
}

.risk-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.risk-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 30px;
  color: var(--text-color);
  line-height: 1.6;
}

.risk-list li:last-child {
  border-bottom: none;
}

.risk-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dc3545;
}

.risk-list.positive li::before {
  background: #28a745;
}

/* Sidebar Styles */
.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: var(--shadow);
}

.sidebar-title {
  color: var(--text-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

/* Quick Info */
.quick-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  color: var(--text-color);
  opacity: 0.8;
  font-weight: 500;
}

.info-value {
  color: var(--text-color);
  font-weight: 600;
}

/* Takeaways */
.takeaways {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.takeaway-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: var(--bg-color);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.takeaway-item:hover {
  transform: translateX(5px);
  border-color: var(--primary-color);
}

.takeaway-item i {
  font-size: 18px;
  flex-shrink: 0;
}

.takeaway-item span {
  color: var(--text-color);
  font-weight: 500;
  line-height: 1.4;
}

/* Related Reports */
.related-reports {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-item {
  display: flex;
  gap: 12px;
  padding: 15px;
  background: var(--bg-color);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.related-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.related-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-content {
  flex: 1;
}

.related-content h5 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-date {
  color: var(--text-color);
  opacity: 0.7;
  font-size: 12px;
}

/* Download Options */
.download-options .btn {
  transition: all 0.3s ease;
  font-weight: 600;
}

.download-options .btn:hover {
  transform: translateY(-2px);
}

/* Analyst Contact */
.analyst-contact {
  text-align: center;
}

.analyst-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.analyst-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
}

.analyst-details h5 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

.analyst-details p {
  color: var(--text-color);
  opacity: 0.7;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info div {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-info i {
  color: var(--primary-color);
  width: 16px;
}

/* Comments Section */
.comments-section {
  background: var(--card-bg);
  padding: 50px 0;
  border-top: 1px solid var(--border-color);
}

.comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.comments-header h3 {
  color: var(--text-color);
  font-weight: 600;
  margin: 0;
  font-size: 24px;
}

/* Comment Form */
.comment-form {
  background: var(--bg-color);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
}

.comment-form .form-control {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  border-radius: 8px;
}

.comment-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(18, 55, 161, 0.25);
}

/* Comments List */
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.comment-item {
  display: flex;
  gap: 15px;
  padding: 25px;
  background: var(--bg-color);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.comment-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comment-avatar {
  flex-shrink: 0;
}

.comment-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.comment-header h5 {
  color: var(--text-color);
  font-weight: 600;
  margin: 0;
  font-size: 16px;
}

.comment-time {
  color: var(--text-color);
  opacity: 0.7;
  font-size: 14px;
}

.comment-content p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

.comment-actions {
  display: flex;
  gap: 15px;
}

.comment-actions .btn {
  padding: 6px 12px;
  font-size: 14px;
  color: var(--text-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.comment-actions .btn:hover {
  opacity: 1;
  color: var(--primary-color);
  background: rgba(18, 55, 161, 0.1);
}

/* Share Modal */
.share-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.share-options .btn {
  transition: all 0.3s ease;
  font-weight: 600;
}

.share-options .btn:hover {
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .report-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .report-actions {
    align-items: flex-start;
    width: 100%;
  }
  
  .report-actions .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 992px) {
  .summary-highlights {
    grid-template-columns: 1fr;
  }
  
  .outlook-cards {
    grid-template-columns: 1fr;
  }
  
  .risk-factors {
    grid-template-columns: 1fr;
  }
  
  .key-metrics .row {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .report-detail-header {
    padding: 30px 0;
  }
  
  .report-title {
    font-size: 28px;
  }
  
  .content-section {
    padding: 25px 20px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .sidebar-card {
    padding: 20px;
  }
  
  .chart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .chart-wrapper {
    padding: 20px;
  }
  
  .metric-card {
    padding: 20px;
  }
  
  .highlight-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .recommendation-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .rec-action {
    align-self: flex-start;
  }
  
  .comments-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .comment-item {
    flex-direction: column;
    gap: 15px;
  }
  
  .comment-header {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .report-detail-header,
  .content-section,
  .sidebar-card,
  .comments-section {
    padding: 20px 15px;
  }
  
  .report-title {
    font-size: 24px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .highlight-card {
    padding: 20px;
  }
  
  .metric-card {
    padding: 15px;
  }
  
  .metric-value {
    font-size: 24px;
  }
  
  .report-actions .btn {
    width: 100%;
    max-width: none;
  }
  
  .report-stats {
    flex-direction: column;
    gap: 10px;
  }
  
  .chart-controls {
    width: 100%;
    justify-content: center;
  }
  
  .analyst-info {
    gap: 12px;
  }
  
  .download-options .btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* Dark Theme Adjustments */
[data-theme="dark"] .report-detail-header,
[data-theme="dark"] .content-section,
[data-theme="dark"] .sidebar-card,
[data-theme="dark"] .comments-section {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .highlight-card,
[data-theme="dark"] .metric-card,
[data-theme="dark"] .outlook-card,
[data-theme="dark"] .recommendation-item,
[data-theme="dark"] .takeaway-item,
[data-theme="dark"] .related-item,
[data-theme="dark"] .comment-item,
[data-theme="dark"] .comment-form {
  background: var(--bg-color);
  border-color: var(--border-color);
}

[data-theme="dark"] .chart-wrapper {
  background: var(--bg-color);
  border-color: var(--border-color);
}

/* Print Styles */
@media print {
  .report-actions,
  .comments-section,
  .sidebar-card:last-child,
  .mobile-menu-overlay,
  .navbar,
  .footer {
    display: none !important;
  }
  
  .content-section,
  .sidebar-card {
    box-shadow: none;
    border: 1px solid #000;
    break-inside: avoid;
  }
  
  .report-title {
    font-size: 24px;
  }
  
  .chart-wrapper {
    background: white;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .highlight-card:hover,
  .metric-card:hover,
  .related-item:hover {
    box-shadow: 0 0 0 2px #000;
  }
  
  .category-badge.hot {
    background: #8b0000;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .highlight-card,
  .metric-card,
  .outlook-card,
  .recommendation-item,
  .takeaway-item,
  .related-item,
  .comment-item,
  .download-options .btn,
  .share-options .btn {
    transition: none;
  }
  
  .highlight-card:hover,
  .metric-card:hover,
  .outlook-card:hover,
  .recommendation-item:hover,
  .takeaway-item:hover,
  .related-item:hover,
  .download-options .btn:hover,
  .share-options .btn:hover {
    transform: none;
  }
}

/* Animation Effects */
.report-detail-header {
  animation: slideInDown 0.6s ease-out;
}

.content-section {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.content-section:nth-child(1) { animation-delay: 0.1s; }
.content-section:nth-child(2) { animation-delay: 0.2s; }
.content-section:nth-child(3) { animation-delay: 0.3s; }
.content-section:nth-child(4) { animation-delay: 0.4s; }

.sidebar-card {
  animation: slideInRight 0.6s ease-out;
  animation-fill-mode: both;
}

.sidebar-card:nth-child(1) { animation-delay: 0.2s; }
.sidebar-card:nth-child(2) { animation-delay: 0.3s; }
.sidebar-card:nth-child(3) { animation-delay: 0.4s; }
.sidebar-card:nth-child(4) { animation-delay: 0.5s; }
.sidebar-card:nth-child(5) { animation-delay: 0.6s; }

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}