/* Minimal CSS for Scrum Poker */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 1rem;
    background: #f5f5f5;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
}

.room-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.room-header h1 {
    margin: 0;
}

.copy-link-btn {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    transition: background-color 0.2s ease;
}

.copy-link-btn.copied {
    background-color: #333;
}

h1, h2 {
    color: #333;
}

a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

:focus {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input {
    padding: 0.5rem;
    border: 1px solid #000000;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

button, .btn {
    padding: 0.5rem 1rem;
    background: #000000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover, .btn:hover {
    background: #000000;
}

.estimates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
    margin: 1rem 0;
}

.estimate-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
    margin: 1rem 0;
}

.estimate-buttons form {
    display: contents;
}

.estimate-buttons .estimate-btn {
    width: 100%;
    box-sizing: border-box;
}

.estimate-btn {
    padding: 1rem;
    text-align: center;
    border: 2px solid #000000;
    background: white;
    color: #000000;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
}

.estimate-btn:hover {
    background: #000000;
    color: white;
}

.estimate-btn.selected {
    background: #000000;
    color: white;
}

.member-list {
    list-style: none;
    padding: 0;
}

.member-list li {
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
}

.member {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
}

.estimate {
    font-weight: bold;
}

.estimate.concealed {
    color: #000000;
    font-weight: bold;
}

.member.has-estimate {
    background-color: #f8f9fa;
}

