@media (max-width: 768px) {
  .calendar-day {
    min-height: 60px;
    border-radius: 10px;
    padding: 0.25rem;
    position: relative;
    background: #1e293b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .calendar-day.raid {
    background: #475569;
  }
  .calendar-day.non-raid-day {
    background: #1e293b;
    opacity: 0.7;
  }
  .add-btn, .action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 8px;
    margin-bottom: 8px;
    background: #3b82f6;
    color: #fff;
    cursor: pointer;
  }
  .add-btn {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    background: #3b82f6;
  }
  .action-buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 8px;
    left: 0;
    padding: 0 12px;
  }
  .action-btn.edit { background: #f59e0b; color: #1f2937; }
  .action-btn.delete { background: #dc2626; color: #fff; }
  .callout {
    display: block;
    margin: 2px 0 0 0;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 3px;
    min-width: 20px;
    text-align: center;
    background: #dc2626;
    color: #fff;
  }
  .callout.late {
    background: #f59e0b;
    color: #1f2937;
  }
  .day-icon, .more-callouts, .calendar-info-row {
    display: none !important;
  }
}
