.requirements-form {
    background: #fff;
    padding: 20px;
    border: 1px solid #ccd0d4;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.requirements-form h2,
.requirements-form h3 {
    margin-top: 0;
}

.requirements-form p {
    margin-bottom: 16px;
}

.requirements-form input[type="text"],
.requirements-form textarea,
.requirements-form select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    box-sizing: border-box;
}

.requirements-form button {
    background-color: #007cba;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.requirements-form button:hover {
    background-color: #005a9c;
}

#story-details {
    background-color: #f8f8f8;
    border-left: 4px solid #007cba;
    padding: 10px 15px;
    margin-bottom: 20px;
}

#requirement-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

#requirement-list li {
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remove-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    margin-left: 10px;
    padding: 3px 8px;
    font-size: 0.8em;
    cursor: pointer;
    border-radius: 4px;
}

.remove-btn:hover {
    background-color: #b02a37;
}
