.priority-box {
    background: #141726;
    border: 1px solid #1e2337;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.input-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-row input {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #2a2f44;
    background: #0e1020;
    color: white;
}

.add-btn {
    padding: 12px 20px;
    background: #4cafef;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.25s;
}

.priority-list {
    margin-top: 10px;
}

.priority-item {
    display: flex;
    justify-content: space-between;
    background: #0f1120;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #252b44;
    margin-bottom: 10px;
    align-items: center;
}

.priority-item span {
    color: #c2c8e5;
}

.del-btn {
    padding: 8px 14px;
    background: #ff5b5b;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    transition: 0.25s;
}

.del-btn:hover {
    background: #ff7d7d;
}

.save-btn {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    background: #f8d45a;
    color: black;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: 0.25s;
}
