/* Basic Page Styling */
body {
    font-family: Arial, sans-serif; /* Easier-to-read font */
    text-align: center;
    background: linear-gradient(135deg, #FF9A9E 0%, #FAD0C4 100%);
    margin: 0;
    padding: 20px;
  }
  
  header h1 {
    color: #D63384;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  /* Wordle Section */
  .wordle {
    margin: 20px auto;
    max-width: 320px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .row {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
  }
  
  .tile {
    width: 50px;
    height: 50px;
    border: 2px solid #ccc;
    margin: 2px;
    font-size: 24px;
    line-height: 50px;
    text-transform: uppercase;
    border-radius: 4px;
  }
  
  .correct {
    background-color: #6aaa64;
    color: #fff;
  }
  
  .present {
    background-color: #c9b458;
    color: #fff;
  }
  
  .absent {
    background-color: #787c7e;
    color: #fff;
  }
  
  button {
    padding: 10px 20px;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    background-color: #D63384;
    border: none;
    color: #fff;
    border-radius: 5px;
  }
  
  footer {
    margin-top: 30px;
    font-size: 1.2rem;
    color: #D63384;
  }
  
  /* Poem Section */
  #poem {
    white-space: pre-wrap; /* Preserve line breaks if present */
    text-align: left;
    margin: 10px auto;
    max-width: 320px;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
  }

 /* Vdaygram Section Styling */
#vdaygram {
    background: #fff;
    padding: 20px;
    margin-top: 40px;
  }
  
  #vdaygram h2 {
    color: #D63384;
    margin-bottom: 20px;
    font-size: 2rem;
  }
  
  .vdaygram-feed {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .vdaygram-post {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: #fff;
  }
  
  .vdaygram-post img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .vdaygram-post .caption {
    padding: 10px;
    font-size: 14px;
    color: #333;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #eee;
  }
  
  /* Actions Styling */
  .vdaygram-actions {
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    background: #fafafa;
    border-top: 1px solid #eee;
  }
  
  .action-btn {
    background: none;
    border: none;
    font-size: 14px;
    color: #3897f0;
    cursor: pointer;
    outline: none;
    padding: 5px;
  }
  
  .action-btn:hover {
    text-decoration: underline;
  }
  
  /* Comments Styling */
  .vdaygram-comments {
    padding: 0 10px 10px;
    font-size: 13px;
    color: #555;
    background: #fff;
  }
  
  .vdaygram-comments .comment {
    margin-top: 4px;
  }
  
  .vdaygram-comments .comment strong {
    color: #333;
  }
  
  