@tailwind base;
@tailwind components;
@tailwind utilities;

/* 自定义样式 */
.diary-page {
  background-color: #f9f7f1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  height: 100%;
}

.diary-content {
  font-family: 'Times New Roman', Times, serif;
  line-height: 1.6;
}

/* 打印样式 */
@media print {
  .no-print {
    display: none !important;
  }
  
  .diary-page {
    box-shadow: none;
    padding: 0;
    margin: 0;
  }
}
