body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "avenir next", avenir,helvetica, "helvetica neue", ubuntu, roboto, noto, "segoe ui", arial,sans-serif;
    font-size: 15px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 20px;
    background-color: #FAFAFA;
}

.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}

textarea {
    width: 100%;
    height: 150px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 10px;
    margin-top: 20px;
    font-size: inherit;
    resize: none;
    box-sizing: border-box;
}

.button-group {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

button {
    flex: 1;
    padding: 10px;
    background: #333;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: inherit;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background: #555;
}

/* Improved counts section */
.counts {
    margin-top: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.04);
}

.counts h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.count-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.count-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
}

.count-label {
    font-weight: 500;
}

.count-value {
    font-weight: 600;
    color: #333;
    background: white;
    padding: 3px 8px;
    border-radius: 4px;
    min-width: 30px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.08);
}

/* Description styling */
.description {
    color: #666;
    margin-top: -5px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 24px;
    }

    textarea {
        height: 120px;
    }

    .count-grid {
        grid-template-columns: 1fr;
    }
}

a:not(:is(:hover, :focus)) {
    text-decoration-color: 
      color-mix(in srgb, currentColor, transparent 75%);
  }