body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}
  .wrapper {
    text-align: center;
    flex: 1;
    padding: 2rem;
}
  h1 {
    font-size: 32px;
    margin-bottom: 10px;
}
  .subtitle {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
}
  .container {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}
  input[type="text"] {
    width: 300px;
    height: 40px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #444;
    border-radius: 5px;
    background-color: #1e1e1e;
    color: #f0f0f0;
}
  input[type="text"]::placeholder {
    color: #888;
}
  button {
    height: 40px;
    padding: 0 20px;
    font-size: 16px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.1s ease;
}
  button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}
  .note {
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
}
  .public-toggle {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
  .public-feed {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    padding: 1rem;
    background: #090808;
    border-right: 1px solid #000;
    overflow-y: auto;
    z-index: 10;
    transition: left 0.3s ease;
}
  .public-feed h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}
  .public-feed .confession {
    background: #1e1e1e;
    border: 1px solid #000;
    padding: 0.8rem;
    border-radius: 0px;
    margin-bottom: 0.24rem;
    font-size: 15;
    white-space: pre-wrap;
}
  .public-toggle {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
  #publicToggleBtn {
    width: 0.5rem;
    height: 2.8rem;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: left;
    line-height: 1.5rem;
    border: 2px solid #888;
    border-radius: 4px;
    background: #2f2f2f;
    cursor: pointer;
}
  .feed-toggle-btn {
    position: fixed;

    top: 10px;
    left: 10px;

    z-index: 1000;
    padding: 8px 12px;

    font-size: 16px;
    background-color: #0F0C1A;
    color: white;
    border: none;
    border-radius: 5px;

    transition: margin-left 0.3s ease;
}

.feed-toggle-btn:hover {
  background-color: #0F0C1A;
  transform: scale(1.1);
}