.manage-nevoi-wrapper {
    max-width: 600px;
    margin: 0 auto;
    font-family: sans-serif;
}
.manage-nevoi-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.manage-nevoi-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.manage-nevoi-field input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.manage-nevoi-submit {
    background: white;
    color: black;
    border: solid;
    border-color: #F7CA3D;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
.manage-nevoi-submit:hover {
    background: #005177;
}
.manage-nevoi-msg {
    color: #d63638;
}
.nevoi-item {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}
.nevoi-item h4 {
    margin: 0 0 10px 0;
}
.nevoi-item p {
    margin: 0 0 10px 0;
}
.nevoi-action-btn {
    padding: 8px 15px;
    background: #d63638;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}
.nevoi-action-btn:hover {
    background: #b32d2e;
}