.activity-section h2 {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.activity-section p {
  font-size: 0.95rem;
  color: var(--text-secondary, #787774);
  margin-bottom: 25px;
}

.activity-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--border-color, #e5e5e5);
  padding-bottom: 5px;
}

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

.my-movie-card {
  background-color: var(--bg-white, #ffffff);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.my-movie-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.my-movie-poster {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.my-movie-info {
  padding: 10px;
}

.my-movie-title {
  font-size: 1rem;
  color: var(--text-dark, #37352f);
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 5px;
  height: 40px;
  overflow: hidden;
}

.my-movie-rating {
  font-size: 0.9rem;
  color: var(--accent-color, #6565f0);
  margin-bottom: 10px;
}

.unfavorite-btn {
  width: 100%;
  padding: 6px;
  border: 1px solid #dc3545;
  border-radius: 4px;
  background-color: #fff0f0;
  color: #dc3545;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background-color 0.2s;
}

.unfavorite-btn:hover {
  background-color: #dc3545;
  color: white;
}

.my-posts-section .board-table {
  width: 100%;
  border-collapse: collapse;
}

.my-posts-section .board-table thead {
  background-color: var(--bg-light-gray, #f7f7f7);
  border-bottom: 2px solid var(--border-color, #e5e5e5);
}

.my-posts-section .board-table th,
.my-posts-section .board-table td {
  padding: 10px 15px;
  font-size: 0.9rem;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-dark, #37352f);
  text-align: center;
}

.my-posts-section .board-table th {
  color: var(--text-secondary, #787774);
  font-weight: 600;
}

.my-posts-section .col-num {
  width: 10%;
}
.my-posts-section .col-title {
  width: 50%;
  text-align: left;
}
.my-posts-section .col-date {
  width: 20%;
}
.my-posts-section .col-views {
  width: 20%;
}

.my-posts-section .col-title a {
  color: var(--text-dark, #37352f);
  text-decoration: none;
}
.my-posts-section .col-title a:hover {
  color: var(--accent-color, #6565f0);
  text-decoration: underline;
}
