/* ========================================
   SHARE MODAL & CALENDAR STYLES
   ======================================== */

/* Share Modal */
.share-modal .modal-content {
  max-width: 500px;
  padding: 30px;
}

.share-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 15px;
  margin: 25px 0;
}

.share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.share-btn i {
  font-size: 24px;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn.facebook {
  border-color: #1877F2;
  color: #1877F2;
}

.share-btn.facebook:hover {
  background: #1877F2;
  color: white;
}

.share-btn.twitter {
  border-color: #1DA1F2;
  color: #1DA1F2;
}

.share-btn.twitter:hover {
  background: #1DA1F2;
  color: white;
}

.share-btn.zalo {
  border-color: #0068FF;
  color: #0068FF;
}

.share-btn.zalo:hover {
  background: #0068FF;
  color: white;
}

.share-btn.telegram {
  border-color: #0088CC;
  color: #0088CC;
}

.share-btn.telegram:hover {
  background: #0088CC;
  color: white;
}

.share-btn.copy {
  border-color: #666;
  color: #666;
}

.share-btn.copy:hover {
  background: #666;
  color: white;
}

.share-link-box {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.share-link-box input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  background: #f5f5f5;
}

.btn-copy-link {
  padding: 12px 20px;
  background: #DC143C;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-copy-link:hover {
  background: #B01030;
  transform: scale(1.05);
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transition: bottom 0.3s ease;
  white-space: nowrap;
}

.toast-notification.show {
  bottom: 30px;
}

/* Anchors Section */
.anchors-section {
  text-align: center;
  padding: 20px;
  background: #f5f5f5;
  border-top: 1px solid #e0e0e0;
}

#anchors-container {
  font-size: 14px;
  color: #666;
}

#anchors-container a {
  color: #DC143C;
  text-decoration: none;
  padding: 0 10px;
  transition: color 0.3s ease;
}

#anchors-container a:hover {
  color: #8B0000;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
  .share-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .share-btn {
    padding: 15px 10px;
    font-size: 13px;
  }
  
  .share-btn i {
    font-size: 20px;
  }
}
